I have a bigger (c#) WPF application with n-classes
and m-methods
. I would like to place in every single method a breakpoint, so everytime i press
EDIT: tested only with C++
I came across this article that shows how to set a breakpoint at the beginning of every method in a class. I've tested it with VS 2010. The basic process (when using Visual C++) is:
MyClass::*
MyClass
's methods is hit, you'll see a breakpoint at the beginning of every function in MyClass
, and all of these will be "children" of the original breakpoint in the Breakpoints window.I imagine this works with C# as well.