Double.InvokeIsNaN(Double) Method

Definition

Returns true if the specified number is a Not-a-Number (NaN) value, false otherwise.

[Android.Runtime.Register("isNaN", "(D)Z", "")]
public static bool InvokeIsNaN (double v);
[<Android.Runtime.Register("isNaN", "(D)Z", "")>]
static member InvokeIsNaN : double -> bool

Parameters

v
Double

the value to be tested.

Returns

true if the value of the argument is NaN; false otherwise.

Attributes

Remarks

Returns true if the specified number is a Not-a-Number (NaN) value, false otherwise.

Java documentation for java.lang.Double.isNaN(double).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to