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

◆ GetHashCode() [3/4]

int System.StringComparer.GetHashCode ( object obj)
inline

Definition at line 146 of file StringComparer.cs.

147 {
148 if (obj == null)
149 {
150 throw new ArgumentNullException("obj");
151 }
152 if (obj is string obj2)
153 {
154 return GetHashCode(obj2);
155 }
156 return obj.GetHashCode();
157 }
int GetHashCode(object obj)

References System.StringComparer.GetHashCode(), and System.obj.

Referenced by System.StringComparer.GetHashCode(), and System.Data.DataTable.GetSpecialHashCode().