Installed VS 2005 last night. It went pretty smooth. If you have something like Microsoft Anti Spyware installed, you might want to turn it off during the install. ie if you are not going to be in front of the computer during the process. It pops up a few times asking you to allow/block certain processes. A single reboot at the end and I was ready to write my first program:
using System;
namespace AnswerToEverything
{
public class Universe<T>
{
public void Show(T t)
{
Console.WriteLine(t);
}
}
class Program
{
static void Main()
{
Universe<string> hello = new Universe<string>();
hello.Show("Hello World");
Universe<int> answer = new Universe<int>();
answer.Show(42);
Console.ReadLine();
}
}
}