[This is preliminary documentation and is subject to change.]

Addition where one of the operands is a ulong.

Namespace:  BigNum
Assembly:  BigNum (in BigNum)
Version: 1.0.0.0

Syntax

C#
public static BigInt operator +(
	ulong left,
	BigInt right
)
Visual Basic (Declaration)
Public Shared Operator + ( _
	left As ULong, _
	right As BigInt _
) As BigInt
Visual C++
public:
static BigInt^ operator +(
	unsigned long long left, 
	BigInt^ right
)

Parameters

left
Type: System..::.UInt64
The ulong operand.
right
Type: BigNum..::.BigInt
The BigInt operand.

Return Value

The sum of the two operands.

See Also