本文介绍了C#中:检查是否有任何按键在按下控制台的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
两者 Console.Read()
和 Console.ReadKey()
似乎等待键被按下。我怎样才能检测是否没有实际要求的方案要等到按下一个键被按下什么?
Both Console.Read()
and Console.ReadKey()
seem to wait for a key to be pressed. How can I detect if anything was pressed without actually asking for the program to wait till a key is pressed?
推荐答案
您可以查询在知道,如果你能读什么。
You can poll on Console.KeyAvailable to know if you can read anything.
这篇关于C#中:检查是否有任何按键在按下控制台的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!