bigloo.foreign.GT_BIGNUM C# (CSharp) Method

GT_BIGNUM() public static method

public static GT_BIGNUM ( bignum n1, bignum n2 ) : bool
n1 bignum
n2 bignum
return bool
        public static bool GT_BIGNUM( bignum  n1,
				    bignum  n2 )
        {
            return (n1.value > n2.value);
        }
foreign