BigInteger(Int32, Byte[]) Constructor

Constructs a new BigInteger from a sign and a byte array.

Definition

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

Parameters

sign  Int32
An integer that specifies the sign of the BigInteger.
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