我可以将异步 CTP 与 .NET 3.0 一起使用吗?

发布于 2025-01-02 05:33:33 字数 104 浏览 2 评论 0原文

我可以将新的 AsyncCtpLibrary.dll 与 .NET 3.0 一起使用吗?如果我在参考文献中添加这个库,它会起作用吗?我需要在新项目中使用 async/await/task 函数。

Can I use new AsyncCtpLibrary.dll with .NET 3.0? If I add this library in References, will it work? I need to use async/await/task functions in a new project.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

羁〃客ぐ 2025-01-09 05:33:33

异步 CTP 构建于任务并行库 (TPL) 之上,该库是4.0框架,所以它不能与3.0版本的框架一起使用。

为了编译异步 CTP 代码,您需要安装异步 CTP,因为编译器已替换为能够使用新异步关键字的新编译器版本。为了使用已编译的异步 CTP 代码,DLL 就足够了。

The Async CTP builds upon Task Parallel Library (TPL) that's part of the 4.0 framework, so it's not usable with the 3.0 version of the framework.

In order to compile Async CTP code you need to install the Async CTP, because the compiler is replaced with a new compiler version capable of using the new async keywords. In order to use compiled Async CTP code it should be enough with the dlls.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文