BigInteger(Int32) Constructor

Constructs a new BigInteger.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public BigInteger(
	int value
)

Parameters

value  Int32
A positive integer

Remarks

value must be greater than or equal to zero. Otherwise, an OverflowException is thrown.

Exceptions

OverflowExceptionvalue is less than zero.

See Also