4 references to Equals
System.Runtime.Numerics (4)
System\Numerics\BigInteger.cs (4)
3805
public static bool operator ==(BigInteger left, long right) => left.
Equals
(right);
3807
public static bool operator !=(BigInteger left, long right) => !left.
Equals
(right);
3817
public static bool operator ==(long left, BigInteger right) => right.
Equals
(left);
3819
public static bool operator !=(long left, BigInteger right) => !right.
Equals
(left);