How to define multiple breakpoints in MS Visual Studio

Suppose you want to debug a project ... but you want to go to all event handlers, delegate methods, etc ... Is there a way to add multiple breakpoints in all these places (say, at the beginning of each method) instead of manually clicking and choosing breakpoints?

+3
source share
3 answers

There is such a plugin for visual studio to set multiple breakpoints. See this article (now removed, but linked via archive.org). Alternatively, you can copy the macro from here to your visual studio. He also works with the 2010 edition.

+2
source

Not out of the box. I suppose it's possible to create a VS Addon that could do this, but I doubt it will be worth the effort.

0
source

Class::* VS2008. , , .

0

Source: https://habr.com/ru/post/1714210/


All Articles