IntPtr.IsEvenInteger(IntPtr) Método

Definição

Determina se um valor representa um número integral par.

public:
 static bool IsEvenInteger(IntPtr value) = System::Numerics::INumberBase<IntPtr>::IsEvenInteger;
public static bool IsEvenInteger(IntPtr value);
static member IsEvenInteger : nativeint -> bool
Public Shared Function IsEvenInteger (value As IntPtr) As Boolean

Parâmetros

value
IntPtr

nativeint

O valor a ser verificado.

Retornos

true se value for um inteiro par; caso contrário, false.

Implementações

Comentários

Esse método lida corretamente com valores de ponto flutuante e, portanto 2.0 , retornará true enquanto 2.2 retornará false.

Um valor retornado false não implica que IsOddInteger(TSelf) retornará true. Um número com uma parte fracionária, por exemplo, 3.3não é par ou ímpar.

Aplica-se a