有人可以告訴我,我如何停止這個做與按鍵循環?如何結束一個按鍵的while循環
我想在控制檯窗口中做一個「移動」光標。
do
{
if (KeyInput.Key == ConsoleKey.UpArrow)
{
downup = downup++;
}
else if (KeyInput.Key == ConsoleKey.DownArrow)
{
downup = downup-1;
}
else if (KeyInput.Key == ConsoleKey.LeftArrow)
{
leftright = leftright -1;
}
else if (KeyInput.Key == ConsoleKey.RightArrow)
{
leftright = leftright++;
}
} while (KeyInput.Key != ConsoleKey.Escape);
添加break語句。 – 2014-12-08 00:16:36