Base:
method
GetHashCode
System.ValueType.GetHashCode()
40 references to GetHashCode
mscorlib (1)
system\enum.cs (1)
777return (*(float*)pValue).GetHashCode();
System.Data (1)
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
481return IsNull ? 0 : Value.GetHashCode();
System.Numerics (36)
System\Numerics\Matrix3x2.cs (6)
804return M11.GetHashCode() + M12.GetHashCode() + 805M21.GetHashCode() + M22.GetHashCode() + 806M31.GetHashCode() + M32.GetHashCode();
System\Numerics\Matrix4x4.cs (16)
2206return M11.GetHashCode() + M12.GetHashCode() + M13.GetHashCode() + M14.GetHashCode() + 2207M21.GetHashCode() + M22.GetHashCode() + M23.GetHashCode() + M24.GetHashCode() + 2208M31.GetHashCode() + M32.GetHashCode() + M33.GetHashCode() + M34.GetHashCode() + 2209M41.GetHashCode() + M42.GetHashCode() + M43.GetHashCode() + M44.GetHashCode();
System\Numerics\Plane.cs (1)
363return Normal.GetHashCode() + D.GetHashCode();
System\Numerics\Quaternion.cs (4)
789return X.GetHashCode() + Y.GetHashCode() + Z.GetHashCode() + W.GetHashCode();
System\Numerics\Vector2.cs (2)
41int hash = this.X.GetHashCode(); 42hash = HashCodeHelper.CombineHashCodes(hash, this.Y.GetHashCode());
System\Numerics\Vector3.cs (3)
46int hash = this.X.GetHashCode(); 47hash = HashCodeHelper.CombineHashCodes(hash, this.Y.GetHashCode()); 48hash = HashCodeHelper.CombineHashCodes(hash, this.Z.GetHashCode());
System\Numerics\Vector4.cs (4)
49int hash = this.X.GetHashCode(); 50hash = HashCodeHelper.CombineHashCodes(hash, this.Y.GetHashCode()); 51hash = HashCodeHelper.CombineHashCodes(hash, this.Z.GetHashCode()); 52hash = HashCodeHelper.CombineHashCodes(hash, this.W.GetHashCode());
System.Web.DataVisualization (1)
Common\General\Chart.cs (1)
4351return obj._familyName.GetHashCode() ^ obj._size.GetHashCode();
System.Windows.Forms.DataVisualization (1)
Common\General\Chart.cs (1)
4351return obj._familyName.GetHashCode() ^ obj._size.GetHashCode();