Base:
method
GetHashCode
System.ValueType.GetHashCode()
32 references to GetHashCode
Microsoft.Maui (1)
Layouts\FlexEnums.cs (1)
102 public override int GetHashCode() => _isRelative.GetHashCode() ^ Length.GetHashCode();
Microsoft.Maui.Graphics (12)
Color.cs (4)
98 int hashcode = Red.GetHashCode(); 99 hashcode = (hashcode * 397) ^ Green.GetHashCode(); 100 hashcode = (hashcode * 397) ^ Blue.GetHashCode(); 101 hashcode = (hashcode * 397) ^ Alpha.GetHashCode();
PointF.cs (2)
61 return X.GetHashCode() ^ (Y.GetHashCode() * 397);
RectF.cs (4)
62 int hashCode = X.GetHashCode(); 63 hashCode = (hashCode * 397) ^ Y.GetHashCode(); 64 hashCode = (hashCode * 397) ^ Width.GetHashCode(); 65 hashCode = (hashCode * 397) ^ Height.GetHashCode();
SizeF.cs (2)
107 return (Width.GetHashCode() * 397) ^ Height.GetHashCode();
Microsoft.ML.Tokenizers (1)
Model\SentencePieceBpeModel.cs (1)
1250hashCode = (hashCode * 37) + Score.GetHashCode();
PresentationCore (9)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\wgx_core_types.cs (4)
463return a.GetHashCode() ^ r.GetHashCode() ^ g.GetHashCode() ^ b.GetHashCode();
System\Windows\Input\Stylus\Common\StylusPoint.cs (1)
583_pressureFactor.GetHashCode();
System\Windows\Media\Color.cs (4)
1134return 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.Windows.Input.Manipulations (6)
System\Windows\Input\Manipulations\Manipulator2D.cs (2)
71return (id.GetHashCode() ^ x.GetHashCode() ^ y.GetHashCode());
System\Windows\Input\Manipulations\PointF.cs (2)
138return (x.GetHashCode() ^ y.GetHashCode());
System\Windows\Input\Manipulations\VectorF.cs (2)
430return (x.GetHashCode() ^ y.GetHashCode());