Implemented interface member:
method
Equals
System.IEquatable<T>.Equals(T)
5 references to Equals
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Matrix4x4.Impl.cs (4)
1615
return X.
Equals
(other.X)
1616
&& Y.
Equals
(other.Y)
1617
&& Z.
Equals
(other.Z)
1618
&& W.
Equals
(other.W);
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector4.cs (1)
1091
public override readonly bool Equals([NotNullWhen(true)] object? obj) => (obj is Vector4 other) &&
Equals
(other);