C# Convert ToString(String)
Description
Convert ToString(String)
returns the specified string
instance; no actual conversion is performed.
Syntax
Convert.ToString(String)
has the following syntax.
public static string ToString(
string value
)
Parameters
Convert.ToString(String)
has the following parameters.
value
- The string to return.
Returns
Convert.ToString(String)
method returns value is returned unchanged.
Example
/*from w w w.j a va 2s .c o m*/
using System;
public class MainClass{
public static void Main(String[] argv){
Console.WriteLine(Convert.ToString("123"));
}
}
The code above generates the following result.