ここにこのコードがあります:
string code1 = null;
Console.Write("Username: " + Environment.UserName.ToString() + ">");
if (Console.ReadLine() == "info")
{
Console.WriteLine("Info:");
}
else if (Console.ReadLine() == "Set Code")
{
if (code1 == null)
{
Console.Write("TEST");
}
else
{
Console.WriteLine("'Set Code' is not known as a command \nEnter 'info' to view all commands");
Console.Write("Username: " + Environment.UserName.ToString() + ">");
}
}
else
{
string temp = Console.ReadLine();
Console.WriteLine("'" + temp + "' is not known as a command \nEnter 'info' to view all commands");
}
Console.ReadLine();
「Set Code」と入力しても何も実行されず、info などを入力すると実行されstring temp = Console.ReadLine();
ますが、実行されませんConsole.WriteLine("'" + temp + "' is not known as a command \nEnter 'info' to view all commands");
そのコードを入れたときに他のものが実行されないのはなぜですか? 私はそれを段階的にデバッグしましたが、そこで壊れているようです。