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.Code:void Main() { Thread t = new Thread(Test); t.Start(); } void Test() { int i = 0; i++; i++; }
Does anyone else have this problem? I also tried VS2008.


Reply With Quote
