C# Convert ToSingle(Object)
Description
Convert ToSingle(Object)
converts the value of the specified
object to a single-precision floating-point number.
Syntax
Convert.ToSingle(Object)
has the following syntax.
public static float ToSingle(
Object value
)
Parameters
Convert.ToSingle(Object)
has the following parameters.
value
- An object that implements the IConvertible interface, or null.
Returns
Convert.ToSingle(Object)
method returns A single-precision floating-point number that is equivalent to value,
or zero if value is null.
Example
// ww w .ja v a2s. c o m
using System;
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(Convert.ToSingle((Object)123));
}
}
The code above generates the following result.