bigloo.foreign.EQ_BIGNUM C# (CSharp) Method

EQ_BIGNUM() public static method

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