UInt128.UnsignedRightShift(UInt128, Int32) Operador

Definição

Desloca um valor para a direita em um determinado valor.

public:
 static UInt128 op_UnsignedRightShift(UInt128 value, int shiftAmount) = System::Numerics::IShiftOperators<UInt128, int, UInt128>::op_UnsignedRightShift;
public static UInt128 op_UnsignedRightShift (UInt128 value, int shiftAmount);
static member op_UnsignedRightShift : UInt128 * int -> UInt128
Public Shared op_UnsignedRightShift (value As UInt128, shiftAmount As Integer) As UInt128

Parâmetros

value
UInt128

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 destina-se a executar n deslocamento à direita sem sinal (também conhecido como lógico) em todos os tipos.

Aplica-se a