Visual Studio 问题:如何以编程方式转到特定文件路径和行号?

发布于 2024-08-31 07:05:52 字数 143 浏览 9 评论 0原文

在 Visual Studio 输出窗口中,您可以双击包含文件路径和行号的行,它会自动将您带到该位置。在我的程序中,我需要模仿这种行为,并且能够单击某些内容(例如按钮)并转到我告诉它转到的特定文件和行号。任何帮助/建议将不胜感激。

我正在使用 C# 工作。

In the Visual Studio output window, you can double click a line that contains a file path and line number and it automatically takes you to that location. In my program, I need to mimic this behavior and be able to click something (a button for example) and do go to a specific file and line number that I tell it to go to. Any help/suggestions would be appreciated.

I am working in C#.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

农村范ル 2024-09-07 07:05:52

您可以编写一个宏(工具/宏/宏 IDE)来执行此操作。以下命令将选择特定文件并转到给定的行号。

    DTE.Windows.Item("myfile.cs").Activate()
    DTE.ExecuteCommand("Edit.Goto", "1234")

You can write a macro (Tools/Macros/Macros IDE) to do this. The following commands will select a specific file and go to the given line number.

    DTE.Windows.Item("myfile.cs").Activate()
    DTE.ExecuteCommand("Edit.Goto", "1234")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文