BigInteger Explicit Conversion (Single to BigInteger)
Defines an explicit conversion of a Single object to a BigInteger value.
Assembly: System.Numerics (in System.Numerics.dll)
Parameters
- value
- Type: System::Single
The value to convert to a BigInteger.
Return Value
Type: System.Numerics::BigIntegerAn object that contains the value of the value parameter.
| Exception | Condition |
|---|---|
| OverflowException | value is Single::NaN. -or- value is Single::PositiveInfinity. -or- value is Single::NegativeInfinity. |
Any fractional part of the value parameter is truncated before conversion.
The overloads of the Explicit(Decimal to BigInteger) method define the types to which or from which a BigInteger can be converted. Because the conversion from Single to BigInteger can involve truncating any fractional part of value, language compilers do not perform this conversion automatically. Instead, they perform the conversion only if a casting operator (in C#) or a conversion function (such as CType in Visual Basic) is used. Otherwise, they display a compiler error.
The following example converts the individual elements in an array of Single values to BigInteger objects, and then displays the result of each conversion. Note that any fractional part of a Single value is truncated during the conversion.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.