Decimal Explicit Conversion (Decimal to UInt64)

 
equivalentCodeEntityM:System.Decimal.ToUInt64(System.Decimal)

Defines an explicit conversion of a Decimal to a 64-bit unsigned integer.

This API is not CLS-compliant.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

F# does not support this operator

Parameters

value
Type: System.Decimal

The value to convert.

Return Value

Type: System.UInt64

A 64-bit unsigned integer that represents the converted Decimal.

Exception Condition
OverflowException

value is negative or greater than UInt64.MaxValue.

This operator supports the explicit conversion of a Decimal to a UInt64. The syntax for such explicit conversions is language-dependent, and individual language compilers can provide different implementations and return different results. The example illustrates the different return values when you explicitly convert a Decimal value to a UInt64 value by using C# and Visual Basic. To perform a conversion that is independent of language, you can call the ToUInt64 or the Convert.ToUInt64(Decimal) method.

The following example converts Decimal numbers to UInt64 values by using the explicit Decimal to UInt64 conversion.

No code example is currently available or this language may not be supported.

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
Return to top
Show: