Base:
method
GetHashCode
System.ValueType.GetHashCode()
20 references to GetHashCode
PresentationCore (9)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\wgx_core_types.cs (4)
466return a.GetHashCode() ^ r.GetHashCode() ^ g.GetHashCode() ^ b.GetHashCode();
System\Windows\Input\Stylus\Common\StylusPoint.cs (1)
594_pressureFactor.GetHashCode();
System\Windows\Media\Color.cs (4)
1156return a.GetHashCode() ^ r.GetHashCode() ^ g.GetHashCode() ^ b.GetHashCode();
System.Data.Common (1)
System\Data\SQLTypes\SQLSingle.cs (1)
412public override int GetHashCode() => IsNull ? 0 : Value.GetHashCode();
System.Drawing.Primitives (2)
System\Drawing\PointF.cs (2)
141public override readonly int GetHashCode() => HashCode.Combine(X.GetHashCode(), Y.GetHashCode());
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Enum.cs (1)
1270CorElementType.ELEMENT_TYPE_R4 => Unsafe.As<byte, float>(ref data).GetHashCode(),
src\System\ValueType.cs (1)
134hashCode.Add(Unsafe.As<byte, float>(ref Unsafe.AddByteOffset(ref rawData, fieldOffset)).GetHashCode());
System.Windows.Input.Manipulations (6)
System\Windows\Input\Manipulations\Manipulator2D.cs (2)
72return (id.GetHashCode() ^ x.GetHashCode() ^ y.GetHashCode());
System\Windows\Input\Manipulations\PointF.cs (2)
142return (x.GetHashCode() ^ y.GetHashCode());
System\Windows\Input\Manipulations\VectorF.cs (2)
434return (x.GetHashCode() ^ y.GetHashCode());