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

Divides the two BigInts.

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

Syntax

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

Parameters

left
Type: BigNum..::.BigInt
The numerator.
right
Type: BigNum..::.BigInt
The denominator.

Return Value

Returns the result of integer division.

See Also