BigInteger.IsOddInteger(BigInteger) Método

Definição

Determina se um valor representa um número integral ímpar.

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

Parâmetros

value
BigInteger

O valor a ser verificado.

Retornos

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

Implementações

Comentários

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

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

Aplica-se a