C# Convert ToDouble(UInt32)
Description
Convert ToDouble(UInt32)
converts the value of the specified
32-bit unsigned integer to an equivalent double-precision floating-point
number.
Syntax
Convert.ToDouble(UInt32)
has the following syntax.
[CLSCompliantAttribute(false)]
public static double ToDouble(
uint value
)
Parameters
Convert.ToDouble(UInt32)
has the following parameters.
value
- The 32-bit unsigned integer to convert.
Returns
Convert.ToDouble(UInt32)
method returns A double-precision floating-point number that is equivalent to value.
Example
/* ww w . j a va 2 s . co m*/
using System;
public class MainClass{
public static void Main(String[] argv){
Console.WriteLine(Convert.ToDouble((UInt32)78));
}
}
The code above generates the following result.