指定した Object の値を Unicode 文字に変換します。
Overloads Public Shared Function ToChar( _
ByVal value As Object _) As Char
[C#]
public static char ToChar(objectvalue);
[C++]
public: static __wchar_t ToChar(Object* value);
[JScript]
public static function ToChar(
value : Object) : Char;
パラメータ
- value
IConvertible インターフェイスを実装する Object 。
戻り値
value の値と等価な Unicode 文字。
または
value が null 参照 (Visual Basic では Nothing) に等しい場合は Char.MinValue 。
例外
例外の種類 | 条件 |
---|---|
InvalidCastException | value は IConvertible インターフェイスを実装しません。 |
解説
戻り値は、value の基になる型の IConvertible.ToChar メソッドを呼び出した結果得られる値です。
使用例
[Visual Basic, C#, C++] ToByte を使用して、 String の値を Char に変換する方法については、次のコード例を参照してください。
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
参照
Convert クラス | Convert メンバ | System 名前空間 | Convert.ToChar オーバーロードの一覧