BigInteger(Int64) Constructor

Constructs a new BigInteger.

Definition

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

Parameters

value  Int64
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