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

◆ GetHashCode() [5/5]

override int System.OrdinalComparer.GetHashCode ( string obj)
inline

Definition at line 60 of file OrdinalComparer.cs.

61 {
62 if (obj == null)
63 {
64 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.obj);
65 }
66 if (_ignoreCase)
67 {
68 return obj.GetHashCodeOrdinalIgnoreCase();
69 }
70 return obj.GetHashCode();
71 }

References System.OrdinalComparer._ignoreCase, System.obj, and System.ThrowHelper.ThrowArgumentNullException().