Decimal.Sign(Decimal) Método

Definição

Calcula o sinal de um valor.

public:
 static int Sign(System::Decimal d) = System::Numerics::INumber<System::Decimal>::Sign;
public static int Sign (decimal d);
static member Sign : decimal -> int
Public Shared Function Sign (d As Decimal) As Integer

Parâmetros

d
Decimal

O valor cujo sinal deve ser calculado.

Retornos

Um valor positivo se d for positivo, Zero se d for zero e um valor negativo se d for negativo.

Implementações

Comentários

É recomendável que uma função retorne 1, 0e -1, respectivamente.

Aplica-se a