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

◆ GetHashCode()

override int System.Double.GetHashCode ( )
inline

Definition at line 275 of file Double.cs.

276 {
277 long num = Unsafe.As<double, long>(ref Unsafe.AsRef(in m_value));
278 if (((num - 1) & 0x7FFFFFFFFFFFFFFFL) >= 9218868437227405312L)
279 {
280 num &= 0x7FF0000000000000L;
281 }
282 return (int)num ^ (int)(num >> 32);
283 }
readonly double m_value
Definition Double.cs:13

References System.L, and System.Double.m_value.