开发者

VS2010 debugger always breaks

开发者 https://www.devze.com 2023-01-01 23:44 出处:网络
In VS2010, I set a break point (from the left gutter of the editor) on a line of code. After I removed the break point, the debugger always breaks on that line of code. After starting visual studio, t

In VS2010, I set a break point (from the left gutter of the editor) on a line of code. After I removed the break point, the debugger always breaks on that line of code. After starting visual studio, the 开发者_如何转开发debugger still breaks at the point.

Thanks in advance!


Are you removing the breakpoint while the program is running? I find that VS 2008 (and 2010) only disables the breakpoint then, but re-enable it on the next program invocation. If so, try removing it while the program is not running. Otherwise I have no idea.


use control+shift+f9 or goto your Debug menu and delete all breakpoints. It might be some weird bug..


Is there a debugbreak statement in there or an asm int 3 call?

0

精彩评论

暂无评论...
验证码 换一张
取 消