How to avoid stepping into 3rd party code in Visual Studio
I am working with fairly complex code that is working with several 3rd part libraries. When I want to keep on stepping over (F10) I sometimes end up in 3rd party assembly code. If I deselect the option to go automatically into disassembly, it complains that the source code i开发者_JAVA百科s not available. What I want to happen in this situation is for Visual Studio to step over all the 3rd party code and break as soon as it finds code with source file (most likely my project). Any way this behaviour can be enabled?
Note: I am working with unmanaged code
精彩评论