C# Convert ToUInt64(Single)
Description
Convert ToUInt64(Single)
converts the value of the specified
single-precision floating-point number to an equivalent 64-bit unsigned
integer.
Syntax
Convert.ToUInt64(Single)
has the following syntax.
[CLSCompliantAttribute(false)]
public static ulong ToUInt64(
float value
)
Parameters
Convert.ToUInt64(Single)
has the following parameters.
value
- The single-precision floating-point number to convert.
Returns
Convert.ToUInt64(Single)
method returns value, rounded to the nearest 64-bit unsigned 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
/*from ww w . j a va 2 s . c om*/
using System;
public class MainClass{
public static void Main(String[] argv){
Console.WriteLine(Convert.ToUInt64((Single)123.123F));
}
}
The code above generates the following result.