gpt4 book ai didi

c# - 如何以编程方式清除 Visual Studio 2013 中的输出

转载 作者:太空狗 更新时间:2023-10-29 20:23:51 25 4
gpt4 key购买 nike

我通过以下方式在 WPF 和 ASP.NET-MVC 应用程序的控制台上打印输出:

System.Diagnostics.Debug.WriteLine("text");

如何以编程方式清除输出窗口?

最佳答案

// Import EnvDTE and EnvDTE80 into your project
using EnvDTE;
using EnvDTE80;

protected void ClearOutput()
{
DTE2 ide = (DTE2)System.Runtime.InteropServices.Marshal.GetActiveObject("VisualStudio.DTE.12.0");
ide.ToolWindows.OutputWindow.OutputWindowPanes.Item("Debug").Clear();
System.Runtime.InteropServices.Marshal.ReleaseComObject(ide);
}

关于c# - 如何以编程方式清除 Visual Studio 2013 中的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25627384/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com