Breakpoint Grouping

I am working on a Windows C # based project in visual studio 2005. I often debug various functions in this huge project. Now the problem is that I made several breakpoints in several places that I need only when I debug this function .I want other breakpoints to be disabled. I understand that this cannot be a precedent for a larger community. I want to know if there is a way to group breakpoints in VS 2005 so that I can disable them when debugging this particular function?

+3
source share
2 answers

There is no built-in function in Visual Studio, however what I came across a while ago is the clever use of macros to give some grouping functionality.

Check out this blog post by Jim Gris for how to do this.

Just notice, now I will not help your current situation, but the situation improved in VS 2010 .

+3
source

you can check this link:

VS 2010 debugger improvements (breakpoints, data, import / export)

This solution only works in Visual Studio 2010 and above.

0
source

All Articles