12 references to BigInteger
Microsoft.CodeAnalysis (2)
RealParser.cs (2)
62private static readonly BigInteger s_bigTwo = new BigInteger(2); 63private static readonly BigInteger s_bigTen = new BigInteger(10);
System.Runtime.Numerics (9)
System\Numerics\BigInteger.cs (9)
60private static readonly BigInteger s_one = new(1); 61private static readonly BigInteger s_zero = new(0); 62private static readonly BigInteger s_minusOne = new(-1); 2326public static implicit operator BigInteger(byte value) => new BigInteger(value); 2331public static implicit operator BigInteger(char value) => new BigInteger(value); 2333public static implicit operator BigInteger(short value) => new BigInteger(value); 2335public static implicit operator BigInteger(int value) => new BigInteger(value); 2413public static implicit operator BigInteger(sbyte value) => new BigInteger(value); 2416public static implicit operator BigInteger(ushort value) => new BigInteger(value);
System.Security.Cryptography (1)
System\Security\Cryptography\X509Certificates\FindPal.cs (1)
245BigInteger ten = new BigInteger(10);