BigInteger.UnsignedRightShift(BigInteger, Int32) Operador

Definição

Desloca um valor para a direita em um determinado valor.

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 para a direita por shiftAmount.

shiftAmount
Int32

O valor pelo qual value é deslocado para a direita.

Retornos

O resultado da mudança value para a direita por shiftAmount.

Implementações

Comentários

Essa operação executa um deslocamento à direita sem sinal (também conhecido como lógico) em todos os tipos.

Aplica-se a