Decimal Implicit Conversion (UInt32 to Decimal)
Defines an explicit conversion of a 32-bit unsigned integer to a Decimal.
This API is not CLS-compliant. Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System.UInt32
The 32-bit unsigned integer to convert.
The overloads of the Implicit method define the types from which the compiler can automatically convert a Decimal 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 exception.
The following example converts UInt32 values to Decimal numbers.
using System; class Example { public static void Main() { // Define an array of 32-bit unsigned integer values. uint[] values = { uint.MinValue, uint.MaxValue, 0xFFFFFF, 123456789, 4000000000 }; // Convert each value to a Decimal. foreach (var value in values) { Decimal decValue = value; Console.WriteLine("{0} ({1}) --> {2} ({3})", value, value.GetType().Name, decValue, decValue.GetType().Name); } } } // The example displays the following output: // 0 (UInt32) --> 0 (Decimal) // 4294967295 (UInt32) --> 4294967295 (Decimal) // 16777215 (UInt32) --> 16777215 (Decimal) // 123456789 (UInt32) --> 123456789 (Decimal) // 4000000000 (UInt32) --> 4000000000 (Decimal)
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.