BigInteger Explicit Conversion (BigInteger to Decimal)
Defines an explicit conversion of a BigInteger object to a Decimal value.
Assembly: System.Numerics (in System.Numerics.dll)
Parameters
- value
-
Type:
System.Numerics::BigInteger
The value to convert to a Decimal.
| Exception | Condition |
|---|---|
| OverflowException |
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 CDec in Visual Basic) is used.
Because this operation defines a narrowing conversion, it can throw an OverflowException at run time if the BigInteger value is outside the range of the Decimal data type.
The following example illustrates the conversion of BigInteger to Decimal values. It also handles an OverflowException that is thrown because the BigInteger value is outside the range of the Decimal data type.
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone
Available since 8.1