Char.IShiftOperators<Char,Int32,Char>.RightShift(Char, Int32) Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.