Int128.LeftShift(Int128, Int32) 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将一个值左移一个给定的量。
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
参数
- value
- Int128
由 shiftAmount
向左移动的值。
- shiftAmount
- Int32
value
向左移动的量。
返回
shiftAmount
左移 value
的结果。