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

Returns a Int64 representation of the BigInt supplied.

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

Syntax

C#
public static explicit operator long (
	BigInt num
)
Visual Basic (Declaration)
Public Shared Narrowing Operator CType ( _
	num As BigInt _
) As Long
Visual C++
static explicit operator long long (
	BigInt^ num
)

Parameters

num
Type: BigNum..::.BigInt
The BigInt to convert.

Return Value

A Int64 representation of the BigInt.

Exceptions

ExceptionCondition
System..::.ArgumentOutOfRangeExceptionIf the BigInt supplied won’t fit in a Int64.

See Also