gpt4 book ai didi

c# - ReadKey while key is not pressed 做某事

转载 作者:太空狗 更新时间:2023-10-29 22:09:18 34 4
gpt4 key购买 nike

我正在尝试运行我的代码,直到按下 Esc。因此我在我的控制台中使用 ReadKey

var input = Console.ReadKey();
do
{

} while (input.Key != ConsoleKey.Escape);

但在“ConsoleKey”处它表示,ConsoleKey 在“bool”中是不可能的。我该如何解决?或者我应该改用什么?

最佳答案

试试这个:

ConsoleKeyInfo input;
do
{
input = Console.ReadKey();
} while (input.Key != ConsoleKey.Escape);

关于c# - ReadKey while key is not pressed 做某事,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20845945/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com