Click or drag to resize
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)
Syntax
public static bool isnan(
	float number
)

Parameters

number
Type: SystemSingle
A floating-point number.

Return Value

Type: Boolean
true if number is NaN, false otherwise.
Remarks

See isnan in the C standard documentation.

See Also