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

◆ CompareTo() [2/48]

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

Definition at line 434 of file ValueTuple.cs.

435 {
436 int num = Comparer<T1>.Default.Compare(Item1, other.Item1);
437 if (num != 0)
438 {
439 return num;
440 }
441 num = Comparer<T2>.Default.Compare(Item2, other.Item2);
442 if (num != 0)
443 {
444 return num;
445 }
446 return Comparer<T3>.Default.Compare(Item3, other.Item3);
447 }

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