Click or drag to resize
mathisunordered Method (Single, Single)
Gets a value that indicates whether two floating-point numbers are unordered.

Namespace:  C
Assembly:  C.math (in C.math.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static bool isunordered(
	float number1,
	float number2
)

Parameters

number1
Type: SystemSingle
A floating-point number.
number2
Type: SystemSingle
A floating-point number.

Return Value

Type: Boolean
true if either number1 or number1 is NaN, false otherwise.
Remarks

See isunordered in the C standard documentation.

See Also