Int128.LeftShift(Int128, Int32) Operator

Definition

Shifts a value left by a given amount.

public:
 static Int128 operator <<(Int128 value, int shiftAmount) = System::Numerics::IShiftOperators<Int128, int, Int128>::op_LeftShift;
public static Int128 operator << (Int128 value, int shiftAmount);
static member ( <<< ) : Int128 * int -> Int128
Public Shared Operator << (value As Int128, shiftAmount As Integer) As Int128

Parameters

value
Int128

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.

Implements

Applies to