Byte.IsOddInteger(Byte) Méthode

Définition

Détermine si une valeur représente un nombre entier impair.

public:
 static bool IsOddInteger(System::Byte value) = System::Numerics::INumberBase<System::Byte>::IsOddInteger;
public static bool IsOddInteger (byte value);
static member IsOddInteger : byte -> bool
Public Shared Function IsOddInteger (value As Byte) As Boolean

Paramètres

value
Byte

Valeur à vérifier.

Retours

true si value est un entier impair ; sinon, false.

Implémente

Remarques

Cette méthode gère correctement les valeurs à virgule flottante et retourne true alors 3.0 retourne 3.3false.

Une valeur de retour de false n’implique pas que IsEvenInteger(TSelf) retourne true. Un nombre avec une partie fractionnaire, par exemple, 3.3n’est pas pair ou impair.

S’applique à