Base:
method
GetHashCode
System.ValueType.GetHashCode()
81 references to GetHashCode
mscorlib (1)
system\enum.cs (1)
783
return (*(double*)pValue).
GetHashCode
();
PresentationCore (52)
Core\CSharp\MS\Internal\FontFace\MatchingStyle.cs (3)
278
return _x.
GetHashCode
() ^ _y.
GetHashCode
() ^ _z.
GetHashCode
();
Core\CSharp\MS\Internal\Ink\StrokeFIndices.cs (2)
113
return _beginFIndex.
GetHashCode
() ^ _endFIndex.
GetHashCode
();
Core\CSharp\MS\Internal\Shaping\ShapeTypeface.cs (1)
143
hash = HashFn.HashMultiply(hash) + _scaleInEm.
GetHashCode
();
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (2)
75
^ _emSize.
GetHashCode
()
76
^ _emHintingSize.
GetHashCode
()
Core\CSharp\System\Windows\Media\Animation\RepeatBehavior.cs (1)
240
return _iterationCount.
GetHashCode
();
Core\CSharp\System\Windows\Media\TextFormatting\MinMaxParagraphWidth.cs (2)
63
return _minWidth.
GetHashCode
() ^ _maxWidth.
GetHashCode
();
Core\CSharp\System\Windows\Media3D\Generated\Matrix3D.cs (16)
206
return M11.
GetHashCode
() ^
207
M12.
GetHashCode
() ^
208
M13.
GetHashCode
() ^
209
M14.
GetHashCode
() ^
210
M21.
GetHashCode
() ^
211
M22.
GetHashCode
() ^
212
M23.
GetHashCode
() ^
213
M24.
GetHashCode
() ^
214
M31.
GetHashCode
() ^
215
M32.
GetHashCode
() ^
216
M33.
GetHashCode
() ^
217
M34.
GetHashCode
() ^
218
OffsetX.
GetHashCode
() ^
219
OffsetY.
GetHashCode
() ^
220
OffsetZ.
GetHashCode
() ^
221
M44.
GetHashCode
();
Core\CSharp\System\Windows\Media3D\Generated\Point3D.cs (3)
160
return X.
GetHashCode
() ^
161
Y.
GetHashCode
() ^
162
Z.
GetHashCode
();
Core\CSharp\System\Windows\Media3D\Generated\Point4D.cs (4)
162
return X.
GetHashCode
() ^
163
Y.
GetHashCode
() ^
164
Z.
GetHashCode
() ^
165
W.
GetHashCode
();
Core\CSharp\System\Windows\Media3D\Generated\Quaternion.cs (4)
182
return X.
GetHashCode
() ^
183
Y.
GetHashCode
() ^
184
Z.
GetHashCode
() ^
185
W.
GetHashCode
();
Core\CSharp\System\Windows\Media3D\Generated\Rect3D.cs (6)
179
return X.
GetHashCode
() ^
180
Y.
GetHashCode
() ^
181
Z.
GetHashCode
() ^
182
SizeX.
GetHashCode
() ^
183
SizeY.
GetHashCode
() ^
184
SizeZ.
GetHashCode
();
Core\CSharp\System\Windows\Media3D\Generated\Size3D.cs (3)
173
return X.
GetHashCode
() ^
174
Y.
GetHashCode
() ^
175
Z.
GetHashCode
();
Core\CSharp\System\Windows\Media3D\Generated\Vector3D.cs (3)
160
return X.
GetHashCode
() ^
161
Y.
GetHashCode
() ^
162
Z.
GetHashCode
();
Core\CSharp\System\Windows\Media3D\Quaternion.cs (2)
755
return zero.
GetHashCode
() ^ one.
GetHashCode
();
PresentationFramework (8)
src\Framework\System\Windows\CornerRadius.cs (4)
99
return _topLeft.
GetHashCode
() ^ _topRight.
GetHashCode
() ^ _bottomLeft.
GetHashCode
() ^ _bottomRight.
GetHashCode
();
src\Framework\System\Windows\Thickness.cs (4)
103
return _Left.
GetHashCode
() ^ _Top.
GetHashCode
() ^ _Right.
GetHashCode
() ^ _Bottom.
GetHashCode
();
System.Data (1)
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
477
return IsNull ? 0 : Value.
GetHashCode
();
System.Numerics (2)
System\Numerics\Complex.cs (2)
277
Int32 hash_real = this.m_real.
GetHashCode
() % n1;
278
Int32 hash_imaginary = this.m_imaginary.
GetHashCode
();
System.Web (1)
UI\WebControls\Unit.cs (1)
190
return HashCodeCombiner.CombineHashCodes(type.GetHashCode(), value.
GetHashCode
());
WindowsBase (16)
Base\System\Windows\Generated\Point.cs (2)
147
return X.
GetHashCode
() ^
148
Y.
GetHashCode
();
Base\System\Windows\Generated\Rect.cs (4)
164
return X.
GetHashCode
() ^
165
Y.
GetHashCode
() ^
166
Width.
GetHashCode
() ^
167
Height.
GetHashCode
();
Base\System\Windows\Generated\Size.cs (2)
160
return Width.
GetHashCode
() ^
161
Height.
GetHashCode
();
Base\System\Windows\Generated\Vector.cs (2)
147
return X.
GetHashCode
() ^
148
Y.
GetHashCode
();
Base\System\Windows\Media\Generated\Matrix.cs (6)
176
return M11.
GetHashCode
() ^
177
M12.
GetHashCode
() ^
178
M21.
GetHashCode
() ^
179
M22.
GetHashCode
() ^
180
OffsetX.
GetHashCode
() ^
181
OffsetY.
GetHashCode
();