Int32.IShiftOperators<Int32,Int32,Int32>.UnsignedRightShift Operator

Definition

Shifts a value right by a given amount.

 static int System.Numerics.IShiftOperators<System.Int32,System.Int32,System.Int32>.op_UnsignedRightShift(int value, int shiftAmount) = System::Numerics::IShiftOperators<int, int, int>::op_UnsignedRightShift;
static int IShiftOperators<int,int,int>.op_UnsignedRightShift (int value, int shiftAmount);
static member System.Numerics.IShiftOperators<System.Int32,System.Int32,System.Int32>.op_UnsignedRightShift : int * int -> int
 Shared op_UnsignedRightShift (value As Integer, shiftAmount As Integer) As Integer Implements IShiftOperators(Of Integer, Integer, Integer).op_UnsignedRightShift

Parameters

value
Int32

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

Applies to