| mathisinf Method (Double) | 
 
            Checks if the given number is positive or negative infinity.
            
 
    Namespace: 
   C
    Assembly:
   C.math (in C.math.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static bool isinf(
	double number
)
Public Shared Function isinf ( 
	number As Double
) As Boolean
public:
static bool isinf(
	double number
)
static member isinf : 
        number : float -> bool 
Parameters
- number
 - Type: SystemDouble
A floating-point number. 
Return Value
Type: 
Booleantrue if 
number has an infinite value, 
false otherwise.
Remarks
            See isinf in the C standard documentation.
            
See Also