我想異步支持添加到當前的VS 2010的.NET 4.0的C#項目如何在Visual Studio 2010和.NET 4.0中使用異步?
我發現:
- 的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異步CTP(版本3),Microsoft.Bcl和Microsoft.Bcl.Async。 (也用於在Microsoft.Bcl中運行tools\portable-net40+sl4+win8+wp71\install.ps1
)
而且仍然看不到任何效果。對於
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?)
因此,它是真正的我應該如何使用這個東西嗎?
可能重複:http://stackoverflow.com/questions/12056525/proper-way-to-use-async-with-vs-2010-now-that-vs-2012-is-released – cvraman
@cvraman抱歉,但我無法找到能夠幫助我的答案。因爲他們會說那裏一樣Async CTP適合他們,這不適合我。 – Cynede
@Chipzilla謝謝,但我已經在那裏設置了.NET 4.0,並且我想要使用它進行異步處理。我想知道這是否可能? – Cynede