bigloo.foreign.LT_BIGNUM C# (CSharp) Method

LT_BIGNUM() public static method

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