I\'m debugging a (web) project in Visual Studio 2008. I\'m hitting a breakpoint. F10 continues to the next line, as expected, but the next F10 just stops debugging and the code
It almost sounds like you have the default settings for your debugging. If you go to:
Tools
- Options
- Debugging
Under the general section there is a option to "Enable Just My Code"
By default that is checked, if you uncheck that you should be able to step into the code that you want to see.
Without knowing more about your project and code that you reference, this is my best guess as to why you can’t step into the code.
Hope it helps Rihan