Int128.RightShift(Int128, Int32) 演算子

定義

指定した量だけ値を右にシフトします。

public:
 static Int128 operator >>(Int128 value, int shiftAmount) = System::Numerics::IShiftOperators<Int128, int, Int128>::op_RightShift;
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結果。

実装

注釈

この操作は、符号付き型に対して符号付き (算術型と呼ばれる) 右シフトを実行することを目的とします。

適用対象