我想为当前的 VS 2010 .NET 4.0 C# 项目添加异步支持
我已经找到:
- Visual Studio 异步 CTP - http://www.microsoft.com/en-us/download/details.aspx?id=9983
- Microsoft.Bcl.Async - https://nuget.org/packages/Microsoft.Bcl.Async
我什至没有得到它们之间的真正区别。
我都安装了。Visual Studio Async CTP(版本 3)、Microsoft.Bcl 和 Microsoft.Bcl.Async。(也用于tools\portable-net40+sl4+win8+wp71\install.ps1
在 Microsoft.Bcl 中运行)
而且仍然看不到任何效果。同样的错误
public async Task<CommResponse>
->
Error 37 The type or namespace name 'async' could not be found (are you missing a using directive or an assembly reference?)
那么我应该如何使用这些东西是真的吗?