NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Char.ToString (Char)

Converts a specified Char to its specified String character.

[Visual Basic]
Overloads Public Shared Function ToString( _
   ByVal c As Char _
) As String
[C#]
public static string ToString(
   char c
);
[C++]
public: static String* ToString(
   __wchar_t c
);
[JScript]
public static function ToString(
   c : Char
) : String;

Parameters

c
The character to convert.

Return Value

The string resulting from converting the specified character.

Remarks

This static method takes a character, converts it to a string, and returns the string representation.

See Also

Char Structure | Char Members | System Namespace | Char.ToString Overload List