这么写就行了using System;class Program{ static void Main(string[] args) { Console.WriteLine("按a键退出"); while (Console.ReadKey().KeyChar != 'a') { } }}