4 references to BigInteger
System.Runtime.Numerics (4)
System\Numerics\BigInteger.cs (4)
2529public static implicit operator BigInteger(long value) => new BigInteger(value); 2602public static implicit operator BigInteger(nint value) => new BigInteger(value); 5428return new BigInteger((nint)value._sign >>> smallShift); 5469return new BigInteger(nint.MinValue >>> smallShift);