BigInteger.LeftShift Operator
Shifts the bits to the left, padding the right with zeros.
DefinitionPermalink
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
A BigInteger which represents value shifted to the left by shift bits.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
public static BigInteger operator <<(
BigInteger value,
int shift
)
ParametersPermalink
- value BigInteger
- The number to shift.
- shift Int32
- The number of bits to shift the number to the left.
Return ValuePermalink
BigIntegerA BigInteger which represents value shifted to the left by shift bits.