Byte.Sign(Byte) Método

Definição

Calcula o sinal de um valor.

public:
 static int Sign(System::Byte value) = System::Numerics::INumber<System::Byte>::Sign;
public static int Sign (byte value);
static member Sign : byte -> int
Public Shared Function Sign (value As Byte) As Integer

Parâmetros

value
Byte

O valor cujo sinal deve ser calculado.

Retornos

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

Implementações

Comentários

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

Aplica-se a