Int128.RightShift(Int128, Int32) Operator

Definition

Shifts a value right by a given amount.

public:
 static Int128 operator >>(Int128 value, int shiftAmount) = System::Numerics::IShiftOperators<Int128, int, Int128>::op_RightShift;
public static Int128 operator >> (Int128 value, int shiftAmount);
static member ( >>> ) : Int128 * int -> Int128
Public Shared Operator >> (value As Int128, shiftAmount As Integer) As Int128

Parameters

value
Int128

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 a signed (otherwise known as an arithmetic) right shift on signed types.

Applies to