内容目录
In asynchronous methods, you cannot directly use
Thread.Sleep(1000);
You should use
await Task.Delay(1000);
In asynchronous methods, you cannot directly use
Thread.Sleep(1000);
You should use
await Task.Delay(1000);
文章评论