/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

iambeggingmymothernottoreadthisblog.com
| | codeblog.jonskeet.uk
3.2 parsecs away

Travel
| | In part 6 we tried to come up with a "manual" translation of a very simple async method. This time we'll see what the compiler really generates. As a reminder, here's the async method in question: privatestaticasync Task ReturnValueAsyncWithAssistance() { Task task = Task.Factory.StartNew(() => 5); returnawait task; } Whereas our manual code...
| | alanrendall.wordpress.com
2.5 parsecs away

Travel
| | This blog is named after the Storm Petrel, Hydrobates pelagicus. It is a small bird, looking superficially like a swallow, and with a wingspan of less than 20 centimetres and a weight of about 30 grams. Looking back to my recent trip to South America, I see that the bird which made the biggest impression...
| | codeblog.jonskeet.uk
3.0 parsecs away

Travel
| | Last time we looked into the boundary between the caller of an async method and the method itself. This time I'm going to show the same sort of "skeleton API" but for awaitable types. This is at the heart of C# 5's async feature: within an async method, you can include "await" expressions. You have...
| | comeandseetheseitz.com
7.6 parsecs away

Travel
| I've been holding out on you. I've been making a list of all my favorite tutorials from around the blogosphere, and I have selfishly kept them all to myself. Not any more! Below you will find some of the most practical, fun and inspiring tutorials out there (according to me...). Check them out. Bookmark them....