bigloo.foreign.isinf C# (CSharp) Method

isinf() public static method

public static isinf ( double n ) : bool
n double
return bool
        public static bool isinf( double n )
        {
            return Double.IsInfinity( n );
        }
foreign