Is it possible to communicate with the Visual Studio debugger programmatically while debugging?

前端 未结 2 1017
囚心锁ツ
囚心锁ツ 2020-12-11 08:27

I would like to control options on the debugger without using the debugging GUI\'s, preferably from inside the code being debugged. I would think that would be quite diffic

2条回答
  •  自闭症患者
    2020-12-11 09:00

    I know that you can do it with WinDBG and OutputDebugString, but for Visual Studio, I think you have to spool off another process, pipe commands to that, and have that manipulate the Debugger API.

提交回复
热议问题