Search code examples
visual-studio-2008debuggingexceptionbreakpoints

VS2008 debugger breaks at unwanted line


Visual Studio 2008 breaks at the following line with the following message: VisualStudio8Debugger

I don't want it to stop there, it's making debugging a nightmare. Somehow the exception thrown at line 998 is causing this, even though there is a try...catch block somewhere up there that is supposed to catch this exception. Any ideas on how to stop this from happening?


Solution

  • I hope you are using the debug build to debug your application. And did you check if you have set the /O flag, if yes then remove it. It did cause me a lot of heartburn while debugging, similarly like yours.