terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ Equals() [1/2]

bool IEqualityComparer. System.Collections.Generic.EqualityComparer< T >.Equals ( object x,
object y )
inlineprivate

Definition at line 79 of file EqualityComparer.cs.

80 {
81 if (x != null && y != null)
82 {
83 if (x != null && y != null)
84 {
85 return true;
86 }
87 ThrowHelper.ThrowArgumentException(ExceptionResource.Argument_InvalidArgumentForComparison);
88 }
89 throw new InvalidCastException();
90 }
static void ThrowArgumentException(ExceptionResource resource)

References System.ThrowHelper.ThrowArgumentException().