BigInteger Explicit Conversion (BigInteger to Double)

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Defines an explicit conversion of a BigInteger object to a Double value.

Namespace:  System.Numerics
Assembly:  System.Numerics (in System.Numerics.dll)

Syntax

'Declaration
Public Shared Narrowing Operator CType ( _
    value As BigInteger _
) As Double
public static explicit operator double (
    BigInteger value
)

Parameters

Return Value

Type: System.Double
An object that contains the value of the value parameter.

Remarks

The overloads of the Explicit(Decimal to BigInteger) method define the types to which or from which a BigInteger object can be converted. Language compilers do not perform this conversion automatically because it can involve data loss. Instead, they perform the conversion only if a casting operator (in C#) or a conversion function (such as CType or CDbl in Visual Basic) is used.

Because the BigInteger value can be outside the range of the Double data type, this operation is a narrowing conversion. If the conversion is unsuccessful, it does not throw an OverflowException. Instead, if the BigInteger value is less than Double.MinValue, the resulting Double value is Double.NegativeInfinity. If the BigInteger value is greater than Double.MaxValue, the resulting Double value is Double.PositiveInfinity.

The conversion of a BigInteger to a Double may involve a loss of precision. In some cases, the loss of precision may cause the casting or conversion operation to succeed even if the BigInteger value is outside the range of the Double data type. The following example provides an illustration. It assigns the maximum value of a Double to two BigInteger variables, increments one BigInteger variable by 9.999e291, and tests the two variables for equality. As expected, the call to the Equals(BigInteger) method shows that they are unequal. However, the conversion of the larger BigInteger value back to a Double succeeds, although the BigInteger value now exceeds Double.MaxValue.

' Increase a BigInteger so it exceeds Double.MaxValue.
Dim number1 As BigInteger = CType(Double.MaxValue, BigInteger)
Dim number2 As BigInteger = number1
number2 = number2 + 9.999E+291
' Compare the BigInteger values for equality.
outputBlock.Text += String.Format("BigIntegers equal: {0}", number2.Equals(number1)) & vbCrLf

' Convert the BigInteger to a Double.
Dim dbl As Double = CType(number2, Double)

' Display the two values.
outputBlock.Text += String.Format("BigInteger: {0}", number2) & vbCrLf
outputBlock.Text += String.Format("Double:     {0}", dbl) & vbCrLf
' The example displays the following output:
'       BigIntegers equal: False
'       BigInteger: 1.7976931348623158081352742373E+308
'       Double:     1.79769313486232E+308      
// Increase a BigInteger so it exceeds Double.MaxValue.
BigInteger number1 = (BigInteger)Double.MaxValue;
BigInteger number2 = number1;
number2 = number2 + (BigInteger)9.999e291;
// Compare the BigInteger values for equality.
outputBlock.Text += String.Format("BigIntegers equal: {0}", number2.Equals(number1)) + "\n";

// Convert the BigInteger to a Double.
double dbl = (double)number2;

// Display the two values.
outputBlock.Text += String.Format("BigInteger: {0}", number2) + "\n";
outputBlock.Text += String.Format("Double:     {0}", dbl) + "\n";
// The example displays the following output:
//       BigIntegers equal: False
//       BigInteger: 1.7976931348623158081352742373E+308
//       Double:     1.79769313486232E+308      

Examples

The following example illustrates the conversion of BigInteger to Double values.

Version Information

Silverlight

Supported in: 5, 4

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.