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

This allows “simple notation”, such as BigInt myBigInt = 2400;.

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

Syntax

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

Parameters

num
Type: System..::.Int64
The number to convert from.

Return Value

A BigInt with the specified starting value.

See Also