0

Is there a way to place a Breakpoint on a class, so that whenever control reaches any field, property or method of that class, execution breaks?

marc wellman
  • 5,808
  • 5
  • 32
  • 59

1 Answers1

0

Just place the breakpoint at the Constructor of the class, or at a specific method.

flohdieter
  • 130
  • 4
  • 15
  • The point is that I DO NOT want to place a breakpoint at every possible place in my class. I have a huge class (5000 LOC+) and I want to know when control hits this class. – marc wellman Mar 18 '16 at 13:24