C# Convert ToDouble(SByte)
Description
Convert ToDouble(SByte)
converts the value of the specified
8-bit signed integer to the equivalent double-precision floating-point
number.
Syntax
Convert.ToDouble(SByte)
has the following syntax.
[CLSCompliantAttribute(false)]
public static double ToDouble(
sbyte value
)
Parameters
Convert.ToDouble(SByte)
has the following parameters.
value
- The 8-bit signed integer to convert.
Returns
Convert.ToDouble(SByte)
method returns The 8-bit signed integer that is equivalent to value.
Example
/*from w w w.j a v a 2s . c om*/
using System;
public class MainClass{
public static void Main(String[] argv){
Console.WriteLine(Convert.ToDouble((SByte)78));
}
}
The code above generates the following result.