私はTryParse
を使用する必要がありますが、私は実際にはわかりません。私は、ユーザーが任意の値を入力してプログラムがクラッシュするのを防ぐことができるようにしたい。Tryparseを動作させるにはどうすればよいですか?
string[] userInput = new string[5];
bool isRunning = true;
while (isRunning)
{
Console.WriteLine("[1]Lägg till ett föremål");
Console.WriteLine("[2]Skriv ut innehållet");
Console.WriteLine("[3]Sök i ryggsäcken");
int menyVal = Convert.ToInt32(Console.ReadLine());
switch (menyVal)
{
case 1:
Console.Write("Lägg till ett föremål: ");
userInput[0] = Console.ReadLine();
Console.Write("Lägg till andra föremål: ");
userInput[1] = Console.ReadLine();
Console.Write("Lägg till tredje föremål: ");
userInput[2] = Console.ReadLine();
Console.Write("Lägg till fjärde föremål: ");
userInput[3] = Console.ReadLine();
Console.Write("Lägg till femte föremål: ");
userInput[4] = Console.ReadLine();
break;
case 2:
for (int i = 0; i < userInput.Length; i++)
{
Console.WriteLine(userInput[i]);
}
break;
case 3:
Console.Write("Skriv in sökOrd: ");
string sökOrd = Console.ReadLine();
for (int i = 0; i < userInput.Length; i++)
{
if (userInput[i].ToUpper() == sökOrd.ToUpper())
{
Console.WriteLine(userInput[i]);
break;
}
}
break;
case 4:
isRunning = false;
break;
}
}
Console.ReadLine();
'' int型menyVal。 int.TryParse(Console.ReadLine()、menyVal out); " –
あなたのサンプルを英語に翻訳して、広いオーディエンスに質問が分かるようにしてください。そして、サンプルを短くすることができると思いますよね? –
あなたのプログラムが番号を要求する場所に 'A'(または任意の非番号)を入力して、プログラムを試してみてください。それが壊れている場所を見てください。次にそれを修正しようとします。 –