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