UInt128.LeftShift(UInt128, Int32) 操作员

定义

将一个值左移一个给定的量。

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

参数

value
UInt128

shiftAmount向左移动的值。

shiftAmount
Int32

value 向左移动的量。

返回

shiftAmount左移 value 的结果。

实现

适用于