Double.IsFinite(Double) メソッド
定義
指定の値が有限 (ゼロ、非正規、または正規) かどうかを判断します。Determines whether the specified value is finite (zero, subnormal, or normal).
public:
static bool IsFinite(double d);
public static bool IsFinite (double d);
static member IsFinite : double -> bool
Public Shared Function IsFinite (d As Double) As Boolean
パラメーター
- d
- Double
倍精度浮動小数点数。A double-precision floating-point number.
戻り値
値が有限 (ゼロ、非正規、または正規) の場合は true
。それ以外の場合は false
。true
if the value is finite (zero, subnormal or normal); false
otherwise.