次のコードを使用して、ビジュアルC ++でユーザーから入力を取得しています
Console::WriteLine("Select the Cache Size.\n a. 1 Kb \n b. 2 Kb \n c. 4 Kb \n d. 8 Kb\n");
String^ CACHE_SIZEoption = Console::ReadLine();
Char wh= Char(CACHE_SIZEoption);
switch(wh)
{case 'a':
break;
case 'b':
break;
case 'c':
break;
case 'd':
break;
}
これで、文字列から文字への変換でエラーが発生しています..
error C2440: '<function-style-cast>' : cannot convert from 'System::String ^' to 'wchar_t'