Last Updated : 11 Jul, 2025
In C#,
Char.ToString()is a
System.Charstruct method which is used to convert the value of this instance to its equivalent string representation. This method can be overloaded by passing different type of arguments to it.
This method is used to convert the value of the current instance to its equivalent string representation by using the specified culture-specific format information. The culture-specific format is a type of formatting, it is a process in which an instance value of class, structure, or enum is converted to the string representation and the result displayed to the user.
Syntax:public string ToString(IFormatProvider provider);Parameter:
provider: It is the required object which supplies culture-specific formatting information and it is reserved.Return Type:
It returns the string representation of the value of current instance which is specified by parameter
provider. The return type of this method is
System.String.
Example: CSharp
// C# program to illustrate the
// Char.ToString(IFormatProvider) Method
using System;
class GeeksforGeeks{
// Main method
public static void Main() {
// converting into string
Console.WriteLine(Char.ToString('G'));
}
}
Note:
Here, the parameter
provider, is ignored as it does not participate in this operation.
Char.ToString(Char) MethodThis method is used to convert a specified Unicode character into a string representation.
Syntax:public static string ToString(Char ch);Parameter:
ch: It is the Unicode character which is to be converted.Return Type:
It returns a string representation of parameter
ch. The return type of this method is
System.String.
Example: CSharp
// C# program to illustrate the
// Char.ToString(Char) Method
using System;
class GeeksforGeeks{
// Main method
public static void Main() {
// using ToString(Char) method
// for converting char into string
Console.WriteLine(Char.ToString('A'));
}
}
Char.ToString() Method
This method is used to convert the value of this instance to its equivalent string representation.
Syntax:public override string ToString();Return Type:
It returns a string representation of the value of this instance. The return type of this method is
System.String.
Example: CSharp
// C# program to illustrate the
// Char.ToString() Method
using System;
class GeeksforGeeks{
// Main method
public static void Main() {
// declaration of data type
char ch1 = 'P';
string output;
// convert into a string
output = ch1.ToString();
Console.WriteLine(output);
}
}
Reference: https://learn.microsoft.com/en-us/dotnet/api/system.char.tostring?view=netframework-4.7.2
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4