Overloading of unary >> operators

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public static BigInteger operator >>(
	BigInteger bi1,
	int shiftVal
)
Visual Basic
Public Shared Operator >> ( 
	bi1 As BigInteger,
	shiftVal As Integer
) As BigInteger
Visual C++
public:
static BigInteger^ operator >>(
	BigInteger^ bi1, 
	int shiftVal
)
F#
static let inline (>>>)
        bi1 : BigInteger * 
        shiftVal : int  : BigInteger

Return Value

Type: BigInteger

See Also