Int128.UnsignedRightShift(Int128, Int32) 运算符

定义

将值右移一个给定的量。

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

参数

value
Int128

shiftAmount向右移动的值。

shiftAmount
Int32

向右移动的 value 量。

返回

shiftAmount右移动value的结果。

实现

注解

此操作旨在对所有类型执行 n 个无符号 (也称为逻辑) 右移。

适用于