Visual Studio debugger tips & tricks (for C/C++ projects)

前端 未结 7 1140
梦谈多话
梦谈多话 2021-02-02 16:22

I\'m interested in tips and tricks regarding debugging a C/C++ project in Visual Studio\'s debugger. I recently found out that if you have a pointer to a certain data type, let\

7条回答
  •  梦如初夏
    2021-02-02 16:44

    Some people don't actually realize that you can change the variable values and move the execution point. This is very useful if you hit a breakpoint after a line of code that is of interest to you, and you want to try it again with different values.

提交回复
热议问题