我想做一个控制台应用程序,每隔5秒钟输出一句话,要怎么做?!
while (true) { Console.WriteLine("aaaa"); System.Threading.Thread.Sleep(5000); }
不知道Timer?搜索一下吧。