x
ユーザーがEnterキーを押さずに入力したときにアプリケーションを終了する最良の方法は何ですか. 私が使用している現在のコードは次のとおりです。
Console.WriteLine("\nType x to exit > ");
string test = Console.ReadLine();
while (test != "x")
{
Console.WriteLine("\nType x to exit > ");
test = Console.ReadLine();
}
これにより、ユーザーエクスペリエンスが向上します。