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

◆ GetHashCode()

override int System.Runtime.InteropServices.OSPlatform.GetHashCode ( )
inline

Definition at line 58 of file OSPlatform.cs.

59 {
60 if (Name != null)
61 {
62 return StringComparer.OrdinalIgnoreCase.GetHashCode(Name);
63 }
64 return 0;
65 }

References System.Runtime.InteropServices.OSPlatform.Name, and System.StringComparer.OrdinalIgnoreCase.