4 references to Equals
System.Runtime.Numerics (4)
System\Numerics\BigInteger.cs (4)
3834
public static bool operator ==(BigInteger left, ulong right) => left.
Equals
(right);
3837
public static bool operator !=(BigInteger left, ulong right) => !left.
Equals
(right);
3852
public static bool operator ==(ulong left, BigInteger right) => right.
Equals
(left);
3855
public static bool operator !=(ulong left, BigInteger right) => !right.
Equals
(left);