Decimal.IsInteger(Decimal) Metodo

Definizione

Determina se un valore rappresenta un numero integrale.

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

Parametri

value
Decimal

Valore da controllare.

Restituisce

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

Implementazioni

Commenti

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

Si applica a