Int64.IShiftOperators<Int64,Int32,Int64>.LeftShift(Int64, 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 long System.Numerics.IShiftOperators<System.Int64,System.Int32,System.Int64>.operator <<(long value, int shiftAmount) = System::Numerics::IShiftOperators<long, int, long>::op_LeftShift;static long IShiftOperators<long,int,long>.operator <<(long value, int shiftAmount);static member ( <<< ) : int64 * int -> int64 Shared Operator << (value As Long, shiftAmount As Integer) As Long Implements IShiftOperators(Of Long, Integer, Long).op_LeftShiftParameters
- value
- Int64
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.