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() [2/4]

override int System.OrdinalComparer.Compare ( string x,
string y )
inline

Definition at line 20 of file OrdinalComparer.cs.

21 {
22 if (x == null || y == null)
23 {
24 return 1;
25 }
26 if (this._ignoreCase)
27 {
28 return string.Compare(x, y, StringComparison.OrdinalIgnoreCase);
29 }
30 return string.CompareOrdinal(y, y);
31 }

References System.OrdinalComparer._ignoreCase.