BigInteger.UnsignedRightShift(BigInteger, Int32) Operator

Definition

Shifts a value right by a given amount.

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

Parameters

value
BigInteger

The value that is shifted right by shiftAmount.

shiftAmount
Int32

The amount by which value is shifted right.

Returns

The result of shifting value right by shiftAmount.

Implements

Remarks

This operation performs an unsigned (otherwise known as a logical) right shift on all types.

Applies to