I’m running Windows 7 Ultimate (64 bit) using Visual Studio 2010 RC. I recently decided to have VS run/debug my apps on IIS rather than the dev server that...
  • May 13, 2022
  • 0 Comments
I love tuples. They allow you to quickly group relevant information together without having to write a struct or class for it. This is very useful while refactoring very...
  • May 10, 2022
  • 0 Comments
The ExpandoObject class being added to .NET 4 allows you to arbitrarily set properties onto an object at runtime. Are there any advantages to this over using a Dictionary<string,...
  • April 29, 2022
  • 0 Comments