Reputation: 12283
Suppose you want to debug a project... but you want to step into all Event handlers, delegates methods etc... Is there any way how to add multiple Breakpoints at all of these locations (let's say at the start of each method) instead of manually clicking and choosing the breakpoints?
Upvotes: 3
Views: 802
Reputation: 13832
There is such a visual studio plugin for setting multiple breakpoints. See this article (now removed but linked via archive.org). Also, you can copy paste a macro from here into your visual studio. It also works with the 2010 edition
Upvotes: 2
Reputation: 16109
Native code had Class::*
syntax since at least VS2008. Probably the first case in recorded history where a debugging feature was implemented for native code before managed.
Upvotes: 0
Reputation: 189439
Not out of the box. I guess it may be possible to create a VS Addon that could do this but I doubt that it would be worth the effort.
Upvotes: 0