Mono.Math.BigInteger.genRandom C# (CSharp) Method

genRandom() public static method

Generates a new, random BigInteger of the specified length using the default RNG crypto service provider.
public static genRandom ( int bits ) : BigInteger
bits int The number of bits for the new number.
return BigInteger
		public static BigInteger genRandom (int bits)
		{
			return genRandom (bits, Rng);
		}

Same methods

BigInteger::genRandom ( int bits, RandomNumberGenerator rng ) : BigInteger