如何在输入提示期间禁止控制台中的所有非数字输入?
这里正在谈论控制台。
这个想法是,如果用户在控制台的输入提示期间按下除数字(字母键上方的键和数字键盘)之外的任何键,则不会输入任何内容。就好像控制台会忽略任何非数字按键。
如何以正确的方式做到这一点?
Talking console here.
The idea is that if user presses any key except numbers(the ones above the letter keys, and numpad) during an input prompt in the console, then nothing will be typed. Its's as if console will ignore any non-numeric key presses.
How would one do it the right way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试 ReadKey 方法:
Try the ReadKey method:
这个小实验的工作原理如下:
This little experiment works like that: