按 1 个按键即可接受输入,而不是等待用户在 Console.ReadLine() 上按 Enter 键
我正在开发 ac# 控制台应用程序,用户只需输入数字即可进行选择。有一种方法可以让用户仅在未输入的数字上接受输入,而不是让用户必须输入数字然后按 Enter 键,即用户不必按 Enter 键。e
感谢您的帮助。
I am working on a c# Console Application where the user has to only enter a number to make a selection. Instead of making the user have to type in the number and then hit enter is there a way for the input to be accept on just the number not being inputted, i.e. so the user doesn't have to press enter.e
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Console.ReadKey()
Console.ReadKey()
Console.ReadKey() 在这种情况下应该有效
Console.ReadKey() should work in this case