Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如在此线程中:如何使用 c# 在标签上将更新时间显示为系统时间?
我想要在控制台应用程序中使用相同的解决方案... Datetime 类只显示系统的当前时间,但它不会随着系统时间的变化而改变。是否可以?
您必须清除控制台并将新内容写入控制台。
while(true) { Console.Clear(); Console.WriteLine(DeteTime.Now); Thread.Sleep(1000); }