2 references to Equals
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Scalar.cs (1)
1233
return ((nuint)(object)left).
Equals
((nuint)(object)right);
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
87
public override bool Equals([NotNullWhen(true)] object? obj) => (obj is nuint other) &&
Equals
(other);