4 references to Equals
System.Runtime.Numerics (4)
System\Numerics\BigInteger.cs (4)
3206
public static bool operator ==(BigInteger left, long right) => left.
Equals
(right);
3208
public static bool operator !=(BigInteger left, long right) => !left.
Equals
(right);
3218
public static bool operator ==(long left, BigInteger right) => right.
Equals
(left);
3220
public static bool operator !=(long left, BigInteger right) => !right.
Equals
(left);