Code:
void Main()
{
    Thread t = new Thread(Test);
    t.Start();
}

void Test()
{
    int i = 0;
    i++;
    i++;
}
If I put a breakpoint inside of "Test", when it breaks it freezes VS2005 for 5-10 seconds and then when I try stepping over it just resumes the thread.

Does anyone else have this problem? I also tried VS2008.