C# Convert ToInt16(Double)
Description
Convert ToInt16(Double)
converts the value of the specified
double-precision floating-point number to an equivalent 16-bit signed
integer.
Syntax
Convert.ToInt16(Double)
has the following syntax.
public static short ToInt16(
double value
)
Parameters
Convert.ToInt16(Double)
has the following parameters.
value
- The double-precision floating-point number to convert.
Returns
Convert.ToInt16(Double)
method returns value, rounded to the nearest 16-bit signed integer. If value is halfway
between two whole numbers, the even number is returned; that is, 4.5 is converted
to 4, and 5.5 is converted to 6.
Example
/* w ww.j av a 2 s. c o m*/
using System;
public class MainClass{
public static void Main(String[] argv){
Console.WriteLine(Convert.ToInt16(123.123D));
}
}
The code above generates the following result.