Visual Studio 中的即时窗口自动清理
我有一个关于在 Visual Studio 中调试的问题。是否可以在每次启动调试应用程序之前自动清除 Visual Studio 中的立即窗口? >cls
命令和上下文菜单->全部清除
很有用,但它们不是自动的,每次运行应用程序时都需要个人注意。同样,System.Diagnostics.Debug.Print()|Write*()
方法只能将消息写入即时窗口,因此 >cls
不适用。问题有解决办法吗? (目前我使用VS 2008)
谢谢您的建议。
I have a question about debugging in Visual Studio. Is it possible to clear the Immediate Window in Visual Studio automatically before each startup of a debugged application? The >cls
command and Context Menu->Clear All
are useful, but they are not automatic and require personal attention each time I run the application. Again, System.Diagnostics.Debug.Print()|Write*()
methods can only write messages to the Immediate Window, so >cls
is not applicable. Is there any solution for the problem? (Currently I use VS 2008)
Thank you for suggestions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是执行此操作的宏。在宏 IDE 类视图中导航至 MyMacros - EnvironmentEvents。打开(双击)EnvironmentEvents。在模块中插入以下代码:
在这里您可以看到它应该是什么样子:
请参阅我的快速教程 如何创建和执行 VS 宏。
Here is the macro that does it. In the Macros IDE Class View navigate to MyMacros - EnvironmentEvents. Open (double-click) EnvironmentEvents. Insert the following code inside module:
Here you can see how it should look like:
See my quick tutorial how to create and execute VS macro.