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

◆ GetHashCode()

override int System.Nullable< T >.GetHashCode ( )
inline

Definition at line 73 of file Nullable.cs.

74 {
75 if (!hasValue)
76 {
77 return 0;
78 }
79 return value.GetHashCode();
80 }
readonly bool hasValue
Definition Nullable.cs:12

References System.Nullable< T >.hasValue, and System.Nullable< T >.value.