标签: c# console-application
我的控制台应用程序中有一个while循环:
count = 0; while (count < 60) { count++; }
好的,因此此循环运行非常快。
我想要的是每秒仅添加一次count++。
count++
这可以做到吗?
答案 0 :(得分:1)
使用Thread.Sleep
count = 0; while (count < 60) { Thread.Sleep(1000); // waiting for 1 second count++; }