The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Decimal Implicit Conversion (UInt64 to Decimal)
.NET Framework (current version)
Defines an implicit conversion of a 64-bit unsigned integer to a Decimal.
This API is not CLS-compliant.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
-
Type:
System::UInt64
The 64-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 UInt64 values to Decimal numbers by using the UInt64 to Decimal conversion.
using namespace System; void main() { // Define an array of 64-bit unsigned integer values. array<UInt64>^ values = { UInt64::MinValue, UInt64::MaxValue, 0xFFFFFFFFFFFF, 123456789123456789, 1000000000000000 }; // Convert each value to a Decimal. for each (UInt64 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 (UInt64) --> 0 (Decimal) // 18446744073709551615 (UInt64) --> 18446744073709551615 (Decimal) // 281474976710655 (UInt64) --> 281474976710655 (Decimal) // 123456789123456789 (UInt64) --> 123456789123456789 (Decimal) // 1000000000000000 (UInt64) --> 1000000000000000 (Decimal)
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: