Char.ToString Method  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Converts the value of this instance to its equivalent string representation.
Overloads
| ToString(IFormatProvider) | Converts the value of this instance to its equivalent string representation using the specified culture-specific format information. | 
| ToString(Char) | Converts the specified Unicode character to its equivalent string representation. | 
| ToString() | Converts the value of this instance to its equivalent string representation. | 
Examples
The following code example demonstrates ToString.
using System;
public class ToStringSample {
    public static void Main() {
        char ch = 'a';
        Console.WriteLine(ch.ToString());		// Output: "a"
        Console.WriteLine(Char.ToString('b'));	// Output: "b"
    }
}
open System
let ch = 'a'
printfn $"{ch.ToString()}"      // Output: "a"
printfn $"{Char.ToString 'b'}"  // Output: "b"
Module ToStringSample
    Sub Main()
        Dim ch As Char
        ch = "a"c
        Console.WriteLine(ch.ToString())        ' Output: "a"
        Console.WriteLine(Char.ToString("b"c))  ' Output: "b"
    End Sub
End Module
ToString(IFormatProvider)
- Source:
- Char.cs
- Source:
- Char.cs
- Source:
- Char.cs
- Source:
- Char.cs
Converts the value of this instance to its equivalent string representation using the specified culture-specific format information.
public:
 virtual System::String ^ ToString(IFormatProvider ^ provider);public string ToString(IFormatProvider? provider);public string ToString(IFormatProvider provider);override this.ToString : IFormatProvider -> stringPublic Function ToString (provider As IFormatProvider) As StringParameters
- provider
- IFormatProvider
(Reserved) An object that supplies culture-specific formatting information.
Returns
The string representation of the value of this instance as specified by provider.
Implements
Remarks
The provider parameter is ignored; it does not participate in this operation.
See also
Applies to
ToString(Char)
- Source:
- Char.cs
- Source:
- Char.cs
- Source:
- Char.cs
- Source:
- Char.cs
Converts the specified Unicode character to its equivalent string representation.
public:
 static System::String ^ ToString(char c);public static string ToString(char c);static member ToString : char -> stringPublic Shared Function ToString (c As Char) As StringParameters
- c
- Char
The Unicode character to convert.
Returns
The string representation of the value of c.
See also
Applies to
ToString()
- Source:
- Char.cs
- Source:
- Char.cs
- Source:
- Char.cs
- Source:
- Char.cs
Converts the value of this instance to its equivalent string representation.
public:
 override System::String ^ ToString();public override string ToString();override this.ToString : unit -> stringPublic Overrides Function ToString () As StringReturns
The string representation of the value of this instance.