bigloo.foreign.GE_BIGNUM C# (CSharp) Method

GE_BIGNUM() public static method

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