UInt32.IsOddInteger(UInt32) Método

Definición

Determina si un valor representa un número entero impar.

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

Parámetros

value
UInt32

Valor que se va a comprobar.

Devoluciones

true es si value es un entero impar; en caso contrario, falsees .

Implementaciones

Comentarios

Este método controla correctamente los valores de punto flotante, por lo que 3.0 devolverá true mientras 3.3 devolverá false.

Un valor devuelto de false no implica que IsEvenInteger(TSelf) devuelva true. Un número con una parte fraccionarcional, por ejemplo, 3.3, no es ni par ni impar.

Se aplica a