Double.InvokeIsNaN(Double) Method
In this article
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- v
- Double
the value to be tested.
true
if the value of the argument is NaN;
false
otherwise.
- Attributes
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.