BigInteger.IsNegative(BigInteger) Método

Definición

Determina si un valor es negativo.

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

Parámetros

value
BigInteger

Valor que se va a comprobar.

Devoluciones

true es si value es negativo; de lo contrario, falsees .

Implementaciones

Comentarios

Un valor devuelto de false no implica que IsPositive(TSelf) devuelva true. Un número complejo, a + bi para un valor distinto de cero b, no es positivo o negativo.

Se aplica a