BigInteger(Byte[]) Constructor

Constructs a new BigInteger from a byte array containing a two's complement representation of the number.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public BigInteger(
	byte[] bytes
)

Parameters

bytes  Byte[]
A Byte array that contains the bits of the number. The lowest index corresponds to the least significant byte.

Exceptions

ArgumentNullExceptionbytes is null.

See Also