Big Integer.Left Shift Method
Shifts the bits to the left, padding the right with zeros.
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
A BigInteger which represents value shifted to the left by shift bits.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public static BigInteger LeftShift(
BigInteger value,
int shift
)
Parameters
- value BigInteger
- The number to shift.
- shift Int32
- The number of bits to shift the number to the left.
Return Value
BigIntegerA BigInteger which represents value shifted to the left by shift bits.