I am trying to perform a select on multiple lines of code that are being generated wrong.
Here is an example:
Public Overrides Sub Test
applyAction(a)
applyAction(b)
applyAction(c)
End Sub
I am wanting to select all text between Test and End Sub. I know how to select from a single line but cannot figure out how to select the three lines. This is a sub that appears in multiple classes and can have more than just 3 lines to replace.