BigInteger.CopySign(BigInteger, BigInteger) Método
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Copia o sinal de um valor para o sinal de outro valor.
public:
static System::Numerics::BigInteger CopySign(System::Numerics::BigInteger value, System::Numerics::BigInteger sign) = System::Numerics::INumber<System::Numerics::BigInteger>::CopySign;
public static System.Numerics.BigInteger CopySign(System.Numerics.BigInteger value, System.Numerics.BigInteger sign);
static member CopySign : System.Numerics.BigInteger * System.Numerics.BigInteger -> System.Numerics.BigInteger
Public Shared Function CopySign (value As BigInteger, sign As BigInteger) As BigInteger
Parâmetros
- value
- BigInteger
O valor cuja magnitude é usada no resultado.
- sign
- BigInteger
O valor cujo sinal é usado no resultado.
Devoluções
Um valor com a magnitude de value e o sinal de sign.