Compartilhar via


Int128.IsOddInteger(Int128) Método

Definição

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

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

Parâmetros

value
Int128

Retornos

Boolean

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 é uniforme ou ímpar.

Aplica-se a