Visual Studio 08:设置文件级断点?

发布于 2024-09-11 20:10:23 字数 84 浏览 2 评论 0原文

我有一个 13.4K LOC 的文件。我想设置一个断点,如果调用文件中的任何方法,就会触发该断点。这可能吗? (我自己检查并标记它们将是一个巨大的痛苦。)

I have a file with 13.4K LOC. I would like to set a breakpoint that will be hit if any of the methods in the file are called. Is this possible? (Going through and marking them all myself would be a huge pain.)

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

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

发布评论

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

评论(1

走过海棠暮 2024-09-18 20:10:23

您可以编写 Visual Studio 宏以在文件中每个方法的开头添加断点。

宏看起来是这样的:

Imports System
Imports EnvDTE
Imports EnvDTE80
Imports EnvDTE90
Imports EnvDTE90a
Imports EnvDTE100
Imports System.Diagnostics

Public Module Module1
    Public Sub AddBreakpointForCurrentMethod()
        Dim textSelection As EnvDTE.TextSelection
        Dim codeElement As EnvDTE.CodeElement

        textSelection = DTE.ActiveWindow.Selection
        Try
            codeElement = textSelection.ActivePoint.CodeElement(vsCMElement.vsCMElementFunction)
            If Not (codeElement Is Nothing) Then
                DTE.Debugger.Breakpoints.Add(Line:=codeElement.StartPoint.Line, File:=DTE.ActiveDocument.FullName)
            End If
        Catch
            MsgBox("Add error handling here.")
        End Try
    End Sub

End Module

为了从长远来看解决问题,您可能会考虑将代码重构为更容易处理的更小的单元。

You can write a Visual Studio macro to add a breakpoint at the beginning of each method in the file.

A macro would look something along the lines of this:

Imports System
Imports EnvDTE
Imports EnvDTE80
Imports EnvDTE90
Imports EnvDTE90a
Imports EnvDTE100
Imports System.Diagnostics

Public Module Module1
    Public Sub AddBreakpointForCurrentMethod()
        Dim textSelection As EnvDTE.TextSelection
        Dim codeElement As EnvDTE.CodeElement

        textSelection = DTE.ActiveWindow.Selection
        Try
            codeElement = textSelection.ActivePoint.CodeElement(vsCMElement.vsCMElementFunction)
            If Not (codeElement Is Nothing) Then
                DTE.Debugger.Breakpoints.Add(Line:=codeElement.StartPoint.Line, File:=DTE.ActiveDocument.FullName)
            End If
        Catch
            MsgBox("Add error handling here.")
        End Try
    End Sub

End Module

To solve the problem in the long run you might consider refactoring your code into smaller units that can be handled more easily.

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