4 references to Equals
System.Runtime.Numerics (4)
System\Numerics\BigInteger.cs (4)
3014
public static bool operator ==(BigInteger left, long right) => left.
Equals
(right);
3016
public static bool operator !=(BigInteger left, long right) => !left.
Equals
(right);
3026
public static bool operator ==(long left, BigInteger right) => right.
Equals
(left);
3028
public static bool operator !=(long left, BigInteger right) => !right.
Equals
(left);