Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Operator: BigInt operator<<(BigInt, int)

  • Declared in: RT.BigInteger.BigInt

Declaration

public static BigInt operator<<(
    BigInt operand,
    int amount
)

Summary

Returns the result of a bit-shift-left by the specified amount. This is equivalent to multiply by 2 to the power of amount.

Remarks

If amount is negative, the number is shifted right instead.