BigInteger Implicit Conversion (UInt32 to BigInteger)
.NET Framework (current version)
Defines an implicit conversion of a 32-bit unsigned integer to a BigInteger value.
This API is not CLS-compliant.
Assembly: System.Numerics (in System.Numerics.dll)
Parameters
- value
-
Type:
System::UInt32
The value to convert to a BigInteger.
Return Value
Type: System.Numerics::BigIntegerAn object that contains the value of the value parameter.
The overloads of the Implicit(Byte to BigInteger) method define the types from which a compiler can automatically convert a BigInteger value without an explicit casting operator (in C#) or a call to a conversion function (in Visual Basic). They are widening conversions that do not involve data loss and do not throw an OverflowException. This overload lets the compiler handle conversions from a UInt32 value to a BigInteger value, as the following example shows.
Universal Windows Platform
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
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
Show: