C# Convert ToString(Object)
Description
Convert ToString(Object)
converts the value of the specified
object to its equivalent string representation.
Syntax
Convert.ToString(Object)
has the following syntax.
public static string ToString(
Object value
)
Parameters
Convert.ToString(Object)
has the following parameters.
value
- An object that supplies the value to convert, or null.
Returns
Convert.ToString(Object)
method returns The string representation of value, or String.Empty if value is null.
Example
/*from ww w .j a va 2 s. c o m*/
using System;
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(Convert.ToString((Object)123));
}
}
The code above generates the following result.