async-await
How does the new async/await feature in C# 5 integrate with the message loop?
I\'ve not had chance to check out the CTP of the new C# async/await feature, but here\'s something I was wondering:[详细]
2023-04-12 10:20 分类:问答Async/await in web browser or in node.js?
Is there any attempt to bring async/await feature from C# 5.0 to any language which can be compiled to JavaScript (such as CoffeScript)? (So it can be used either in web browser or in nod开发者_Go百科[详细]
2023-04-11 14:36 分类:问答Silverligh 5 SDK RC + Async CTP : make it work
Just installed the Silverligh 5 SDK RC. There is a problem using it inside a project that uses the Async CTP.[详细]
2023-04-02 09:35 分类:问答How to make Task awaitable
Yesterday I started playing with Microsoft CTP async library, and nowhere I could not find the proper implementation of the awaitable Task. I know that it must have implementation like this?:[详细]
2023-03-26 05:27 分类:问答Try-Catch Async Exceptions
This example \"fails\": static async void Main(string[] args) { try { await TaskEx.Run(() => { throw new Exception(\"failure\"); });[详细]
2023-03-13 07:44 分类:问答C#5 AsyncCtp BadImageFormatException
Please help me with this one, I\'ve been writing a console applicaiton using the AsyncCtpLibrary and the C#5 ctp compiler. First time I got to actually running a code which awaits, I got this:[详细]
2023-03-12 02:23 分类:问答Async exception handling with void
I\'m using Async CTP to write an IO heavy console app. But I\'m having problems with exceptions. public static void Main()[详细]
2023-03-11 18:57 分类:问答Error: "Cannot use 'async' on methods without bodies". How to force async child overrides?
I\'m working on a system in which multiple client objects are expected to implement a particular function via an interface, and I want that function to run asynchronously with continuations (I\'m expe[详细]
2023-03-10 23:39 分类:问答Question about .Net Tasks and the Async CTP
I\'m experimenting with the Async CTP and liking it quite a bit.I did have a question from the whitepaper explaining it however.In it, it says:[详细]
2023-03-10 11:00 分类:问答How to write C# 5 async?
I have the following scenario: When a command is inputted (for test, it\'s a console application, when it\'s ready, I hope it will be a WebService) I execu开发者_JAVA百科te some code, and when further[详细]
2023-03-08 20:43 分类:问答