bigloo.foreign.SAFE_DIV_FX C# (CSharp) Method

SAFE_DIV_FX() public static method

public static SAFE_DIV_FX ( int n1, int n2 ) : Object
n1 int
n2 int
return Object
        public static Object SAFE_DIV_FX( int n1, int n2 )
        {
            if (n1 == int.MinValue && n2 == -1)
             {
            return new bignum(- new BigInteger(n1));
             }
             else
             {
            return BINT(n1 / n2);
             }
        }
foreign