Constructor.

The lowest index of the input byte array (i.e [0]) should contain the most significant byte of the number, and the highest index should contain the least significant byte.

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public BigInteger(
	byte[] inData
)
Visual Basic
Public Sub New ( 
	inData As Byte()
)
Visual C++
public:
BigInteger(
	array<unsigned char>^ inData
)
F#
new : 
        inData : byte[] -> BigInteger

Parameters

inData
Type: array<System..::..Byte>[]()[][]

See Also