C# Convert ToDecimal(UInt64)
Description
Convert ToDecimal(UInt64)
converts the value of the
specified 64-bit unsigned integer to an equivalent decimal number.
Syntax
Convert.ToDecimal(UInt64)
has the following syntax.
[CLSCompliantAttribute(false)]
public static decimal ToDecimal(
ulong value
)
Parameters
Convert.ToDecimal(UInt64)
has the following parameters.
value
- The 64-bit unsigned integer to convert.
Returns
Convert.ToDecimal(UInt64)
method returns A decimal number that is equivalent to value.
Example
The following example converts an array of unsigned long integers to Decimal values.
/*from w ww . j a va 2s . co m*/
using System;
public class MainClass{
public static void Main(String[] argv){
ulong[] numbers = { UInt64.MinValue, 121, 12345, UInt64.MaxValue };
decimal result;
foreach (ulong number in numbers)
{
result = Convert.ToDecimal(number);
Console.WriteLine("Converted the UInt64 value {0} to {1}.",
number, result);
}
}
}
The code above generates the following result.