Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlIntegerSortKey.cs
Go to the documentation of this file.
2
4{
5 private readonly long _longVal;
6
11
12 public override int CompareTo(object obj)
13 {
15 {
16 return CompareToEmpty(obj);
17 }
18 if (_longVal == xmlIntegerSortKey._longVal)
19 {
21 }
22 if (_longVal >= xmlIntegerSortKey._longVal)
23 {
24 return 1;
25 }
26 return -1;
27 }
28}
XmlIntegerSortKey(long value, XmlCollation collation)
int BreakSortingTie(XmlSortKey that)
Definition XmlSortKey.cs:33