BigInteger Explicit  Conversion (Decimal to BigInteger)

Converts a Decimal number to a BigInteger value.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static explicit operator BigInteger (
	decimal value
)

Parameters

value  Decimal
A Decimal value.

Return Value

BigInteger

Remarks

Any digits after the decimal point in value are discarded.

Exceptions

OverflowExceptionvalue is less than zero. value is less than zero.

See Also