bigloo.foreign.EVENP_BIGNUM C# (CSharp) Method

EVENP_BIGNUM() public static method

public static EVENP_BIGNUM ( bignum n ) : bool
n bignum
return bool
        public static bool EVENP_BIGNUM( bignum  n )
        {
            return ((n.value & 1) == 0);
        }
foreign