UInt16.Sign(UInt16) Método

Definición

Calcula el signo de un valor.

public:
 static int Sign(System::UInt16 value) = System::Numerics::INumber<System::UInt16>::Sign;
public static int Sign (ushort value);
static member Sign : uint16 -> int
Public Shared Function Sign (value As UShort) As Integer

Parámetros

value
UInt16

Valor cuyo signo se va a calcular.

Devoluciones

Valor positivo si value es positivo, Zero si value 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