BigInteger.RightShift(BigInteger, Int32) Method

Shifts the bits to the right, discarding bits on the right.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static BigInteger RightShift(
	BigInteger value,
	int shift
)

Parameters

value  BigInteger
The number to shift.
shift  Int32
The number of bits to shift the number to the right.

Return Value

BigInteger
A BigInteger which represents value shifted to the right by shift bits.

See Also