IntPtr.IShiftOperators<IntPtr,Int32,IntPtr>.RightShift Operator

Definition

Shifts a value right by a given amount.

 static IntPtr System.Numerics.IShiftOperators<nint,System.Int32,nint>.operator >>(IntPtr value, int shiftAmount) = System::Numerics::IShiftOperators<IntPtr, int, IntPtr>::op_RightShift;
static IntPtr IShiftOperators<IntPtr,int,IntPtr>.operator >> (IntPtr value, int shiftAmount);
static member ( >>> ) : nativeint * int -> nativeint
 Shared Operator >> (value As IntPtr, shiftAmount As Integer) As IntPtr Implements IShiftOperators(Of IntPtr, Integer, IntPtr).op_RightShift

Parameters

value
IntPtr

nativeint

The value that is shifted right by shiftAmount.

shiftAmount
Int32

The amount by which value is shifted right.

Returns

IntPtr

nativeint

The result of shifting value right by shiftAmount.

Implements

Applies to