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

◆ operator==()

static bool System.Data.IndexField.operator== ( IndexField if1,
IndexField if2 )
inlinestatic

Definition at line 17 of file IndexField.cs.

18 {
19 if (if1.Column == if2.Column)
20 {
21 return if1.IsDescending == if2.IsDescending;
22 }
23 return false;
24 }

References System.Data.IndexField.Column, and System.Data.IndexField.IsDescending.