bigloo.foreign.BGL_SIGNBIT C# (CSharp) Method

BGL_SIGNBIT() public static method

public static BGL_SIGNBIT ( double n ) : int
n double
return int
        public static int BGL_SIGNBIT( double  n )
        {
            return (int) (BitConverter.DoubleToInt64Bits( n ) >> 63);
        }
foreign