BigInteger.IsEvenInteger(BigInteger) Método

Definição

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

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

Parâmetros

value
BigInteger

O valor a ser verificado.

Retornos

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

Implementações

Comentários

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

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

Aplica-se a