Jurassic.BigInteger.Negate C# (CSharp) Method

Negate() public static method

Negates a specified BigInteger value.
public static Negate ( BigInteger value ) : BigInteger
value BigInteger The value to negate.
return BigInteger
        public static BigInteger Negate(BigInteger value)
        {
            value.sign = -value.sign;
            return value;
        }