UInt128.UnsignedRightShift(UInt128, Int32) Operator

Definition

Shifts a value right by a given amount.

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

Parameters

value
UInt128

The value that is shifted right by shiftAmount.

shiftAmount
Int32

The amount by which value is shifted right.

Returns

The result of shifting value right by shiftAmount.

Implements

Remarks

This operation is meant to perform n unsigned (otherwise known as a logical) right shift on all types.

Applies to