I started to use Visual Studio 2008 for some development when it was released in Beta 2. The projects still targets .NET 2.0 and 3.0, but one nice thing with using VS 2008 is that it is possible to use some of the new compiler goodies. For example there is a new short version of writing properties.
public string Context { get; set; }
By writing a property this way I don't need to create a local variable and write the contents of the getter and setter, which saves me some time.