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

◆ Compare() [1/2]

int IComparer. System.Collections.Generic.Comparer< T >.Compare ( object x,
object y )
inlineprivate

Definition at line 36 of file Comparer.cs.

37 {
38 if (x != null)
39 {
40 if (y == null)
41 {
42 return 1;
43 }
44 if (x == null || y != null)
45 {
46 }
47 }
48 ThrowHelper.ThrowArgumentException(ExceptionResource.Argument_InvalidArgumentForComparison);
49 return 1;
50 }
static void ThrowArgumentException(ExceptionResource resource)

References System.ThrowHelper.ThrowArgumentException().