Console.WriteLine("按回车退出循环,按任意键从TOP处继续"); if (Console.ReadKey(true).Key == ConsoleKey.Enter) { break; }else { goto TOP; }
其中ReadKey()括号中为true则用户的按键不显示在控制台窗体上
posted on 2017-11-17 10:30 阅读( ...) 评论( ...)
本文共 267 字,大约阅读时间需要 1 分钟。
Console.WriteLine("按回车退出循环,按任意键从TOP处继续"); if (Console.ReadKey(true).Key == ConsoleKey.Enter) { break; }else { goto TOP; }
其中ReadKey()括号中为true则用户的按键不显示在控制台窗体上
转载于:https://www.cnblogs.com/xiaoyu233/p/7850352.html