UInt128.UnsignedRightShift(UInt128, Int32) Operatore
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Sposta un valore a destra di una determinata quantità.
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
Parametri
- value
- UInt128
Valore spostato a destra da shiftAmount
.
- shiftAmount
- Int32
Importo in base al quale value
viene spostato a destra.
Restituisce
Risultato dello spostamento value
direttamente da shiftAmount
.
Implementazioni
Commenti
Questa operazione è destinata a eseguire n spostamento a destra senza segno (altrimenti noto come logico) su tutti i tipi.