C# Convert ToDouble(UInt64)
Description
Convert ToDouble(UInt64)
converts the value of the specified
64-bit unsigned integer to an equivalent double-precision floating-point
number.
Syntax
Convert.ToDouble(UInt64)
has the following syntax.
[CLSCompliantAttribute(false)]
public static double ToDouble(
ulong value
)
Parameters
Convert.ToDouble(UInt64)
has the following parameters.
value
- The 64-bit unsigned integer to convert.
Returns
Convert.ToDouble(UInt64)
method returns A double-precision floating-point number that is equivalent to value.
Example
/*from w w w .ja v a2 s . com*/
using System;
public class MainClass{
public static void Main(String[] argv){
Console.WriteLine(Convert.ToDouble((UInt64)78));
}
}
The code above generates the following result.