Char.IShiftOperators<Char,Int32,Char>.LeftShift(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 left 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_LeftShift;
	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_LeftShift
	Parameters
- value
 - Char
 
The value that is shifted left by shiftAmount.
- shiftAmount
 - Int32
 
The amount by which value is shifted left.
Returns
The result of shifting value left by shiftAmount.