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 Framework 4.5(带有异步和等待)的任务,我需要知道它们是否是标准 .NET Framework 4 的一部分。
Task和相关的类在.Net 4 中可用。Async 和await 是C# 5 的一部分,它们依赖于Task直到.Net 4.5 才定义的方法(例如GetAwaiter)。如果您使用Async 目标包和 C# 5 编译器,则可以在目标 .Net 4 时使用 async/await。
Task