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.