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.
是否有新的 Timer API 允许我这样做?
await timer.wait(500);
基本上,睡眠 X 毫秒,然后继续执行其余的函数
尝试使用
await Task.Delay(500);
我有一个我非常喜欢的助手,只是为了增加一点可读性:
public static Task Seconds(this int seconds) { return Task.Delay(new TimeSpan(0,0,seconds)); }
这允许我使用类似的东西
await 5.Seconds();
您可以轻松地为毫秒、分钟、小时或其他时间创建类似的扩展方法。