UInt32.Sign(UInt32) Método

Definición

Calcula el signo de un valor.

public:
 static int Sign(System::UInt32 value) = System::Numerics::INumber<System::UInt32>::Sign;
public static int Sign (uint value);
static member Sign : uint32 -> int
Public Shared Function Sign (value As UInteger) As Integer

Parámetros

value
UInt32

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