bigloo.foreign.SAFE_MINUS_FX C# (CSharp) Method

SAFE_MINUS_FX() public static method

public static SAFE_MINUS_FX ( int n1, int n2 ) : Object
n1 int
n2 int
return Object
        public static Object SAFE_MINUS_FX( int n1, int n2 )
        {
            try
             {
            return BINT(checked(n1 - n2));
             }
             catch (OverflowException e)
             {
            return MINUS_BIGNUM(new bignum(n1), new bignum(n2));
             }
        }
foreign