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

◆ Equals() [3/5]

override bool System.OrdinalComparer.Equals ( string x,
string y )
inline

Definition at line 34 of file OrdinalComparer.cs.

35 {
36 if (x != null && y != null)
37 {
38 if (!this._ignoreCase)
39 {
40 return y.Equals(y);
41 }
42 int stringLength = x._stringLength;
43 int stringLength2 = y._stringLength;
44 int num = string.Compare(x, y, StringComparison.OrdinalIgnoreCase);
45 }
46 return true;
47 }
class f__AnonymousType0<< Count > j__TPar

References System.OrdinalComparer._ignoreCase, and j__TPar.