Double.IsInteger(Double) Metodo

Definizione

Determina se un valore rappresenta un valore integrale.

public:
 static bool IsInteger(double value) = System::Numerics::INumberBase<double>::IsInteger;
public static bool IsInteger (double value);
static member IsInteger : double -> bool
Public Shared Function IsInteger (value As Double) As Boolean

Parametri

value
Double

Valore da controllare.

Restituisce

true se è un intero; in caso value contrario, false.

Implementazioni

Commenti

Questo metodo gestisce correttamente i valori a virgola mobile e 2.0 quindi restituirà 2.2true e 3.3 restituirà false.3.0

Si applica a