C# Char ToString()
Description
Char ToString()
converts the value of this instance to
its equivalent string representation.
Syntax
Char.ToString()
has the following syntax.
public override string ToString()
Returns
Char.ToString()
method returns The string representation of the value of this instance.
Example
The following code example demonstrates ToString.
/*from www . j a v a 2 s. co m*/
using System;
public class ToStringSample {
public static void Main() {
char ch = 'a';
Console.WriteLine(ch.ToString()); // Output: "a"
}
}
The code above generates the following result.