C# Convert ToInt64(Single)
Description
Convert ToInt64(Single)
converts the value of the specified
single-precision floating-point number to an equivalent 64-bit signed
integer.
Syntax
Convert.ToInt64(Single)
has the following syntax.
public static long ToInt64(
float value
)
Parameters
Convert.ToInt64(Single)
has the following parameters.
value
- The single-precision floating-point number to convert.
Returns
Convert.ToInt64(Single)
method returns value, rounded to the nearest 64-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
// www . jav a2 s . c om
using System;
public class MainClass{
public static void Main(String[] argv){
Console.WriteLine(Convert.ToInt64((Single)123.123F));
}
}
The code above generates the following result.