阅读量:0
在C#中,你可以通过监听键盘事件来实现Enter键的功能。以下是一个简单的示例,演示了如何在控制台应用程序中检测Enter键并执行特定操作:
using System; namespace EnterKeyExample { class Program { static void Main(string[] args) { Console.WriteLine("按Enter键执行操作..."); // 监听控制台输入 while (true) { if (Console.ReadKey().Key == ConsoleKey.Enter) { // 执行Enter键对应的操作 PerformAction(); } } } static void PerformAction() { Console.WriteLine("Enter键被按下,执行相应操作..."); // 在这里添加你需要执行的操作 } } }
在这个示例中,我们使用Console.ReadKey()
方法监听控制台输入。当检测到Enter键时,会调用PerformAction()
方法来执行特定操作。你可以根据需要修改PerformAction()
方法中的代码来实现你的功能。