Visual Studio - 从 C# 中的错误列表访问警告/错误
我对 CSharp 已经有几个月了,我正在尝试从 Visual Studio 中的错误列表窗格中“抓取”警告/错误,并在我的代码中使用它们,因此希望有一天我可以可以在构建一些东西后调用这个程序。是否有一个类/属性可以让我访问错误列表窗口及其信息?
编辑:“抓取”我的意思是只获取文本中的信息(即描述或行号),这样我就可以显示它/将其写入文件/等等。
I am a bit new to CSharp for a couple months, and I am trying to make "grab" the warnings/errors from the error list pane in Visual Studio and use them in my code, so that hopefully there can be a time where I can call this program after building something. Is there a class/property I can use to let me Access the Error List Window and its info?
Edit: by "grab" I mean just get the information in text(i.e. description or line number), so I can display it/write it to a file/etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 MSDN 文档以了解
ToolWindows.ErrorList< /代码>
。
See the MSDN documentation for
ToolWindows.ErrorList
.