BigInteger Explicit  Conversion (BigInteger to Double)

Converts a BigInteger to a double-precision floating-point number.

Definition

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

Parameters

value  BigInteger
The BigInteger to convert.

Return Value

Double
A Double with the same value as value. If value is larger than MaxValue, PositiveInfinity is returned.

Remarks

This method never throws an exception.

See Also