BigInteger.UnsignedRightShift(BigInteger, Int32) Operador
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.
Desloca um valor para a direita numa determinada quantia.
public:
static System::Numerics::BigInteger op_UnsignedRightShift(System::Numerics::BigInteger value, int shiftAmount) = System::Numerics::IShiftOperators<System::Numerics::BigInteger, int, System::Numerics::BigInteger>::op_UnsignedRightShift;
public static System.Numerics.BigInteger op_UnsignedRightShift(System.Numerics.BigInteger value, int shiftAmount);
static member op_UnsignedRightShift : System.Numerics.BigInteger * int -> System.Numerics.BigInteger
Public Shared op_UnsignedRightShift (value As BigInteger, shiftAmount As Integer) As BigInteger
Parâmetros
- value
- BigInteger
O valor que é deslocado diretamente por shiftAmount.
- shiftAmount
- Int32
A quantidade que value se desloca para a direita.
Devoluções
O resultado de se deslocar value exatamente por shiftAmount.
Implementações
Observações
Esta operação realiza um deslocamento para a direita sem sinal (também conhecido como lógico) em todos os tipos.