IShiftOperators<TSelf,TOther,TResult>.UnsignedRightShift 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将值右移给定量。
public:
static TResult op_UnsignedRightShift(TSelf value, TOther shiftAmount);
public static abstract TResult op_UnsignedRightShift (TSelf value, TOther shiftAmount);
static member op_UnsignedRightShift : 'Self * 'Other -> 'Result
Public Shared op_UnsignedRightShift (value As TSelf, shiftAmount As TOther) As TResult
参数
- value
- TSelf
由 shiftAmount
向右移动的值。
- shiftAmount
- TOther
向右移动的 value
量。
返回
TResult
向shiftAmount
右移动value
的结果。
注解
此操作旨在对所有类型执行无符号 (也称为逻辑) 右移。