NFloat.IsEvenInteger(NFloat) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Détermine si une valeur représente un nombre entier pair.
public:
static bool IsEvenInteger(System::Runtime::InteropServices::NFloat value) = System::Numerics::INumberBase<System::Runtime::InteropServices::NFloat>::IsEvenInteger;
public static bool IsEvenInteger (System.Runtime.InteropServices.NFloat value);
static member IsEvenInteger : System.Runtime.InteropServices.NFloat -> bool
Public Shared Function IsEvenInteger (value As NFloat) As Boolean
Paramètres
- value
- NFloat
Valeur à vérifier.
Retours
true
si value
est un entier pair ; sinon, false
.
Implémente
Remarques
Cette méthode gère correctement les valeurs à virgule flottante et retourne true
alors 2.0
retourne 2.2
false
.
Une valeur de retour de false
n’implique pas que IsOddInteger(TSelf) retourne true
. Un nombre avec une partie fractionnaire, par exemple, 3.3
n’est pas pair ou impair.