18 references to BigInteger
Microsoft.AspNetCore.Http.Extensions.Tests (4)
RequestDelegateFactoryTests.cs (2)
331new object[] { (Action<HttpContext, BigInteger[]>)Store, new[] { "-42" },new[]{ new BigInteger(-42) } }, 382new object[] { (Action<HttpContext, BigInteger>)Store, "-42", new BigInteger(-42) },
RequestDelegateGenerator\RequestDelegateCreationTests.Arrays.cs (1)
138new object[] { "BigInteger[]", new[] { "-42" },new[]{ new BigInteger(-42) } },
RequestDelegateGenerator\RequestDelegateCreationTests.TryParse.cs (1)
49new object[] { "BigInteger", "-42", new BigInteger(-42) },
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 (11)
System\Number.BigInteger.cs (1)
213result = new BigInteger((int)leading);
System\Numerics\BigInteger.cs (10)
48private static readonly BigInteger s_bnOneInt = new BigInteger(1); 49private static readonly BigInteger s_bnZeroInt = new BigInteger(0); 50private static readonly BigInteger s_bnMinusOneInt = new BigInteger(-1); 2144return new BigInteger(value); 2152return new BigInteger(value); 2157return new BigInteger(value); 2162return new BigInteger(value); 2243return new BigInteger((int)value); 2250return new BigInteger(value); 2256return new BigInteger(value);
System.Security.Cryptography (1)
System\Security\Cryptography\X509Certificates\FindPal.cs (1)
245BigInteger ten = new BigInteger(10);