Implemented interface member:
method
Equals
System.IEquatable<T>.Equals(T)
4 references to Equals
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Numerics\Matrix3x2.Impl.cs (3)
409
return X.
Equals
(other.X)
410
&& Y.
Equals
(other.Y)
411
&& Z.
Equals
(other.Z);
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector2.cs (1)
1038
public override readonly bool Equals([NotNullWhen(true)] object? obj) => (obj is Vector2 other) &&
Equals
(other);