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.
我想我错过了一些东西,但我似乎无法等待在 .net 4.5 中工作
有谁知道这里的正确语法?我所看到的所有地方似乎都在使用我所拥有的。(请参阅正确使用 Task.Delay 来延迟按键)
看起来您正试图从 lambda 调用异步方法。你可能async一开始就错过了。例如”
async
SomeMethod(async () => { //... await Task.Delay(1000, cancellationToken); });
您需要async使用您的方法……包含您的代码块的方法。
Task.Start/Wait 和 Async/Await 有什么区别?
http://www.itwriting.com/blog/4913-a-simple-example-of-async-and-await-in-c-5.html
http://msdn.microsoft.com/en-us/library/hh191443.aspx