Capture console output for debugging in VS?

后端 未结 6 485
说谎
说谎 2020-12-06 17:20

Under VS\'s external tools settings there is a \"Use Output Window\" check box that captures the tools command line output and dumps it to a VS tab.

The question is:

6条回答
  •  误落风尘
    2020-12-06 17:51

    You can use Systems.Diagnostics.Trace class to write your output to the Output window instead of (or in addition to) the console. It take a little configuration, but it works. Is that along the line of what you want?

    You can also add your own tab per this article, but I've never tried it.

提交回复
热议问题