BigInteger Explicit  Conversion (BigInteger to Decimal)

Converts a BigInteger to a Decimal number.

Definition

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

Parameters

value  BigInteger
The BigInteger to convert.

Return Value

Decimal
A Decimal value that contains the 96 least significant bits of value.

Remarks

This method never throws an exception.

See Also