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-right by the specified amount. This is equivalent to dividing by 2 to the power of amount and rounding down.

Remarks

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