Double.IsFinite(Double) Method
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 argument is a finite floating-point
value; returns false
otherwise (for NaN and infinity
arguments).
[Android.Runtime.Register("isFinite", "(D)Z", "", ApiSince=24)]
public static bool IsFinite (double d);
[<Android.Runtime.Register("isFinite", "(D)Z", "", ApiSince=24)>]
static member IsFinite : double -> bool
- d
- Double
the double
value to be tested
true
if the argument is a finite
floating-point value, false
otherwise.
- Attributes
Returns true
if the argument is a finite floating-point value; returns false
otherwise (for NaN and infinity arguments).
Added in 1.8.
Java documentation for java.lang.Double.isFinite(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.