Jurassic.BigInteger.BigInteger C# (CSharp) Method

BigInteger() public method

Initializes a new instance of the BigInteger structure using a 32-bit signed integer value.
public BigInteger ( int value ) : System
value int A 32-bit signed integer.
return System
        public BigInteger(int value)
        {
            this.bits = new uint[1];
            this.bits[0] = (uint)Math.Abs(value);
            this.wordCount = 1;
            this.sign = Math.Sign(value);
        }

Same methods

BigInteger::BigInteger ( long value ) : System
BigInteger::BigInteger ( uint bits, int wordCount, int sign ) : System