views:

53

answers:

2

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!

A: 

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.

Evgeny
A: 

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

VoodooChild