Char.IShiftOperators<Char,Int32,Char>.RightShift(Char, Int32) Operator

Definition

Shifts a value right by a given amount.

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

Parameters

value
Char

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