C# 5 Async CTP – Async in Action – Video screencast
I recently recorded a screencast talking about the C# 5 Async CTP, keep in mind that this is my first screencast ever, so please give me your constructive comments. Here’s the video, hope you like it:...
View ArticleC# 5 Async CTP – Old VS New – Video screencast
This is my second screencast, talking about the C# 5 async ctp. In this session I show how you can refactor old code that is using the task parallel library or a background worker to run time consuming...
View ArticleC# Smorgasbord will soon be available!
UPDATE: C# Smorgasbord is now available! Since the fall 2011 I have been working on a book called C# Smorgasbord. The book is inspired by all the interesting topics that I’ve touched in this blog. I’m...
View ArticleAvoid shooting yourself in the foot with Tasks and Async
Since the release of .NET 4.5, you’ve been able to use the RTM version of Async & Await. There are some things though that can lead to very weird behaviors in your applications, and a lot of...
View ArticleWhat does async & await generate?
Do you ever get the feeling that you want to know exactly what happens behind the scenes? I do, quite a lot actually. Which is one of the many reasons that I’ve written about IL, Reflection and ways to...
View ArticleDon’t deadlock with async and await
Deadlocking is really something you need to avoid and in case you don’t know what a deadlock is here’s a great illustration of a “real life deadlock”: Basically what has happened here is that all the...
View ArticleAdvanced Async talk from ALT.NET
As you might know there’s a chapter in my book C# Smorgasbord that introduces you to asynchronous programming in .NET using Async & Await. However in this talk I dig deeper and talk about what...
View ArticleDebugging Asynchronous Code in Visual Studio 2013
With Visual Studio 2013 being publicly released I think it’s time I show off one nice improvements in Visual Studio 2013.tudio 2013. There are in fact a lot of nice improvements in Visual Studio 2013...
View ArticleReliable and fast applications by introducing parallel and async
In this breakfast event that I spoke at which my employer Readify organizes, I talked about Parallel and Asynchronous applications. The idea here is to talk about what makes an application fast and...
View Article