指定した Unicode 文字の値を、それと等価な String 形式に変換します。
Overloads Public Shared Function ToString( _
ByVal value As Char _) As String
[C#]
public static string ToString(charvalue);
[C++]
public: static String* ToString(__wchar_tvalue);
[JScript]
public static function ToString(
value : Char) : String;
パラメータ
- value
Unicode 文字。
戻り値
value の値と等価な String 。
解説
この実装は、 Char.ToString と同じです。
使用例
[Visual Basic, C#, C++] ToString を使用して、 Char を String に変換する方法については、次のコード例を参照してください。
Public Sub ConvertStringChar(ByVal stringVal As String)
Dim charVal As Char = "a"c
' A string must be one character long to convert to char.
Try
charVal = System.Convert.ToChar(stringVal)
System.Console.WriteLine("{0} as a char is {1}", _
stringVal, charVal)
Catch exception As System.FormatException
System.Console.WriteLine( _
"The string is longer than one character.")
Catch exception As System.ArgumentNullException
System.Console.WriteLine("The string is null.")
End Try
' A char to string conversion will always succeed.
stringVal = System.Convert.ToString(charVal)
System.Console.WriteLine("The character as a string is {0}", _
stringVal)
End Sub
[C#]
public void ConvertStringChar(string stringVal) {
char charVal = 'a';
// A string must be one character long to convert to char.
try {
charVal = System.Convert.ToChar(stringVal);
System.Console.WriteLine("{0} as a char is {1}",
stringVal, charVal);
}
catch (System.FormatException) {
System.Console.WriteLine(
"The string is longer than one character.");
}
catch (System.ArgumentNullException) {
System.Console.WriteLine("The string is null.");
}
// A char to string conversion will always succeed.
stringVal = System.Convert.ToString(charVal);
System.Console.WriteLine("The character as a string is {0}",
stringVal);
}
[C++]
void ConvertStringChar(String* stringVal)
{
Char charVal = 'a';
// A String* must be one character long to convert to char.
try {
charVal = System::Convert::ToChar(stringVal);
System::Console::WriteLine(S" {0} as a char is {1}",
stringVal, __box(charVal));
} catch (System::FormatException*) {
System::Console::WriteLine(S"The String* is longer than one character.");
} catch (System::ArgumentNullException*) {
System::Console::WriteLine(S"The String* is 0.");
}
// A char to String* conversion will always succeed.
stringVal = System::Convert::ToString(charVal);
System::Console::WriteLine(S"The character as a String* is {0}",
stringVal);
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET, Common Language Infrastructure (CLI) Standard
参照
Convert クラス | Convert メンバ | System 名前空間 | Convert.ToString オーバーロードの一覧