Constructs a new
BigInteger from a byte array containing a two's complement
representation of the number.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public BigInteger(
byte[] bytes
)
Public Sub New (
bytes As Byte()
)
public:
BigInteger(
array<unsigned char>^ bytes
)
new :
bytes : byte[] -> BigInteger
Parameters
- bytes
- Type: SystemByte
A Byte array that contains the bits of the number.
The lowest index corresponds to the least significant byte.
Reference