The "Find All References" option in the VS editor helps us in finding the locations where a specific object is used. But is there any way so that I can automatically place a break-point at all those locations? Placing break-points for an object referenced at say 100 locations sees impossible! Is there any tool/addin out there which does this job?
Asked
Active
Viewed 33 times
0
-
Why? Place a breakpoint at the start of the referenced function, when it hits, take a look at the call stack window to see who called it (and you can double click on the line to go to the code). – Oded Dec 10 '12 at 10:44
-
@Oded: I'm not debugging any method. I'm debugging for an object which becomes null in some cases in my code, and I want to check where & why it's becoming so. – Sandeep Dec 10 '12 at 10:46
-
If you are not debugging, why place breakpoints? – Oded Dec 10 '12 at 10:49