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.





















Home »
  C# Tutorial »
    System »




Array
BitConverter
Boolean
Byte
Char
Console
ConsoleKeyInfo
Convert
DateTime
DateTimeOffset
Decimal
Double
Enum
Environment
Exception
Guid
Int16
Int32
Int64
Math
OperatingSystem
Random
SByte
Single
String
StringComparer
TimeSpan
TimeZone
TimeZoneInfo
Tuple
Tuple
Tuple
Type
UInt16
UInt32
UInt64
Uri
Version