Home > Net >  vb.net Ignore stepping through certain functions when using F5
vb.net Ignore stepping through certain functions when using F5

Time:06-24

When I use the debugger and F5 to follow along what is currently being called in my app, I have some functions which I don't want the debugger to go through.

These functions are not important to me, and I know what they are doing. Having the debugger step through each line of this function is just taking my time.

How could I make it so that the debugger ignores the function?

Thank you!

CodePudding user response:

With the help of @Jimi, I found a VB.net solution.

One has to add

<DebuggerStepThrough()>

over the first line of the function.

For example:

<DebuggerStepThrough()>
Public Function StrLen(ByVal uString As String) As Integer

    If (Not uString Is Nothing) AndAlso (Not uString = String.Empty) Then
        Return uString.Length
    Else
        Return 0
    End If

End Function
  • Related