Byte.Sign(Byte) Método

Definición

Calcula el signo de un 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

Valor cuyo signo se va a calcular.

Devoluciones

Valor positivo si es positivo, Zero si valuevalue es cero y un valor negativo si value es negativo.

Implementaciones

Comentarios

Se recomienda que una función devuelva 1, 0y -1, respectivamente.

Se aplica a