Articles about .net

11 Jun 2011 ...

Making use of the Tuple class in .NET 4.0

The Tuple class, which was introduced in .NET 4.0, is handy for passing short-lived objects consisting of multiple related values.

6 May 2011 ...

Using DebugView to see debug output in real-time

DebugView is a great way to see what your code is doing while an application is running, for example to see what the code for an ASP.NET web application does while browsing the site.

23 Apr 2011 ...

View .NET DLL source code using ILSpy

ILSpy is a free alternative to Reflector for disassembling .NET binaries. The project started as a reaction to Red Gate turning the previously free Reflector tool commercial.

27 Jan 2011 ...

System.Web.HttpUtility class needs to get some appreciation!

I felt that I needed to give the HttpUtility some well deserved time in the spotlight. Also thought I spend some written space on the ParseQueryString() method, a really nice feature in the System.Web.HttpUtility class that helps you parse a querystring to a NameValueCollection.