mathisnan Method (Single) |
Checks if the given number is NaN (Not A Number).
Namespace:
C
Assembly:
C.math (in C.math.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static bool isnan(
float number
)
Public Shared Function isnan (
number As Single
) As Boolean
public:
static bool isnan(
float number
)
static member isnan :
number : float32 -> bool
Parameters
- number
- Type: SystemSingle
A floating-point number.
Return Value
Type:
Booleantrue if
number is NaN,
false otherwise.
Remarks
See isnan in the C standard documentation.
See Also