Visual Studio 2010 debugger skipping

后端 未结 8 1123
既然无缘
既然无缘 2020-12-11 16:45

Occasionally during debugging the debugger skips forward randomly. Sometimes I Step into a function inside of another function and instead of going to the next line it skips

相关标签:
8条回答
  • 2020-12-11 17:26

    Are you using threads or background workers? When debugging I believe that all threads are paused so it could be switching between them. Otherwise you may have out of date debugging information, Delete your bin and obj directories and do a clean build.

    0 讨论(0)
  • 2020-12-11 17:27

    Are you sure that the assembly your code calls has debug symbols? You maybe referencing a dll that was compiled in release mode.

    0 讨论(0)
提交回复
热议问题