Int64.IsEvenInteger(Int64) Método

Definição

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

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

Parâmetros

value
Int64

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