Lire en anglais Modifier

Partager via


Char.ToString Method

Definition

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"
    }
}

ToString(IFormatProvider)

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 string ToString (IFormatProvider? provider);
public string ToString (IFormatProvider provider);

Parameters

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

.NET 9 et autres versions
Produit Versions
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

ToString(Char)

Source:
Char.cs
Source:
Char.cs
Source:
Char.cs

Converts the specified Unicode character to its equivalent string representation.

public static string ToString (char c);

Parameters

c
Char

The Unicode character to convert.

Returns

The string representation of the value of c.

See also

Applies to

.NET 9 et autres versions
Produit Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0

ToString()

Source:
Char.cs
Source:
Char.cs
Source:
Char.cs

Converts the value of this instance to its equivalent string representation.

public override string ToString ();

Returns

The string representation of the value of this instance.

See also

Applies to

.NET 9 et autres versions
Produit Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0