Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CompareTo() [1/48]

int System.ValueTuple< T1, T2, T3, T4, T5, T6, T7, TRest >.CompareTo ( (T1, T2) other)
inline

Definition at line 308 of file ValueTuple.cs.

309 {
310 int num = Comparer<T1>.Default.Compare(Item1, other.Item1);
311 if (num != 0)
312 {
313 return num;
314 }
315 return Comparer<T2>.Default.Compare(Item2, other.Item2);
316 }

References System.ValueTuple< T1, T2, T3, T4, T5, T6, T7, TRest >.Item1, System.ValueTuple< T1, T2, T3, T4, T5, T6, T7, TRest >.Item2, and System.other.