BigInteger class BigInteger Documentation Code public static readonly BigInteger One public static readonly BigInteger Ten public static readonly BigInteger Three public static readonly BigInteger Two public static readonly BigInteger Zero public int BitCount { get; } public int BitLength { get; } public int IntValue { get; } public long LongValue { get; } public int SignValue { get; } public BigInteger(string value) public BigInteger(string str, int radix) public BigInteger(byte[] bytes) public BigInteger(byte[] bytes, int offset, int length) public BigInteger(int sign, byte[] bytes) public BigInteger(int sign, byte[] bytes, int offset, int length) public BigInteger(int sizeInBits, Random random) public BigInteger(int bitLength, int certainty, Random random) public static int BitCnt(int i) public static BigInteger ProbablePrime(int bitLength, Random random) public static BigInteger ValueOf(long value) public BigInteger Abs() public BigInteger Add(BigInteger value) public BigInteger And(BigInteger value) public BigInteger AndNot(BigInteger val) public BigInteger ClearBit(int n) public int CompareTo(object obj) public int CompareTo(BigInteger value) public BigInteger Divide(BigInteger val) public BigInteger[] DivideAndRemainder(BigInteger val) public BigInteger FlipBit(int n) public BigInteger Gcd(BigInteger value) public int GetLowestSetBit() public bool IsProbablePrime(int certainty) public BigInteger Max(BigInteger value) public BigInteger Min(BigInteger value) public BigInteger Mod(BigInteger m) public BigInteger ModInverse(BigInteger m) public BigInteger ModPow(BigInteger e, BigInteger m) public BigInteger Multiply(BigInteger val) public BigInteger Negate() public BigInteger NextProbablePrime() public BigInteger Not() public BigInteger Or(BigInteger value) public BigInteger Pow(int exp) public bool RabinMillerTest(int certainty, Random random) public BigInteger Remainder(BigInteger n) public BigInteger SetBit(int n) public BigInteger ShiftLeft(int n) public BigInteger ShiftRight(int n) public BigInteger Square() public BigInteger Subtract(BigInteger n) public bool TestBit(int n) public byte[] ToByteArray() public byte[] ToByteArrayUnsigned() public string ToString(int radix) public BigInteger Xor(BigInteger value)