Org.BouncyCastle.Math.BigInteger.BigInteger C# (CSharp) Method

BigInteger() static private method

static private BigInteger ( ) : System
return System
		static BigInteger()
		{
			primeProducts = new int[primeLists.Length];

			for (int i = 0; i < primeLists.Length; ++i)
			{
				int[] primeList = primeLists[i];
				int product = primeList[0];
				for (int j = 1; j < primeList.Length; ++j)
				{
					product *= primeList[j];
				}
				primeProducts[i] = product;
			}
		}

Same methods

BigInteger::BigInteger ( byte bytes ) : System
BigInteger::BigInteger ( byte bytes, int offset, int length ) : System
BigInteger::BigInteger ( int sizeInBits, Random random ) : System
BigInteger::BigInteger ( int sign, byte bytes ) : System
BigInteger::BigInteger ( int sign, byte bytes, int offset, int length ) : System
BigInteger::BigInteger ( int bitLength, int certainty, Random random ) : System
BigInteger::BigInteger ( int signum, int mag, bool checkMag ) : System
BigInteger::BigInteger ( string value ) : System
BigInteger::BigInteger ( string str, int radix ) : System