我可以将异步 CTP 与 .NET 3.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
异步 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.