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

Creates a new BigInt, with the value of the number supplied as a string. The string should be in base-10.

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

Syntax

C#
public BigInt(
	string startValue
)
Visual Basic (Declaration)
Public Sub New ( _
	startValue As String _
)
Visual C++
public:
BigInt(
	String^ startValue
)

Parameters

startValue
Type: System..::.String
The value to initialize to.

See Also