Everyone has seen Anders Hejlsberg demonstrate the new C# 5.0 feature for asynchronous programming. He demonstrated how he ran network stuff in the background and the results being pushed into a continuation. That is very interesting but do you know of any other cool tricks or coding patterns that you can pull off with the async feature?

The coolest trick I have seen so far is switching between threads by awaiting either tasks run on the threadpool or awaiting into a GUI control SynchronizationContext. I never thought of that. Also TaskEx.Delay() is quite cool.

link|improve this question
1  
This should probably be a community wiki considering it has no 'right' answer. – Nathan Taylor Jan 14 '11 at 21:31
I think so too. Can I do that? I do not see any option for that. – usr Jan 14 '11 at 21:46
Can you please post a link of AH's video? I haven't seen it. – Joan Venge Feb 8 '11 at 23:02
1  
@Joan: channel9.msdn.com/Blogs/Charles/… – Emile Jul 20 '11 at 11:29
Thanks Emile. ... – Joan Venge Aug 2 '11 at 23:30
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.