4 references to Equals
System.Runtime.Numerics (4)
System\Numerics\BigInteger.cs (4)
3043
public static bool operator ==(BigInteger left, ulong right) => left.
Equals
(right);
3046
public static bool operator !=(BigInteger left, ulong right) => !left.
Equals
(right);
3061
public static bool operator ==(ulong left, BigInteger right) => right.
Equals
(left);
3064
public static bool operator !=(ulong left, BigInteger right) => !right.
Equals
(left);