Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What do you use the Debugger for?

Some scenarios that I can think of:

  1. Reading/Understanding code
  2. Understanding the flow (what happens when)
  3. What is the actual program up to
    a.Attach debugger b.Exception -> Debug

I would like this to be a community wiki, but cant find the checkbox... Do I miss here something

share|improve this question
1  
I'm new here, but isn't this covered by the Don't Ask FAQ? – Caspar Jun 24 '11 at 1:49
@Caspar. Sorry you might be right... will read later and action on it... – Peter Gfader Jun 24 '11 at 1:50

closed as not a real question by Merlyn Morgan-Graham, RedBlueThing, Andrew Medico, Kirk Woll, hvgotcodes Jun 24 '11 at 2:00

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

When using C# my most frequent use of the debugger is for finding the state of things when there is an easily reproducible null reference exception, or just seeing state at certain points when using a platform that isn't conducive to unit testing like asp.net webforms.

More or less the things you listed.

If there is something that I find myself using the debugger to check multiple times, I often take it as a sign that I should try and find a way to test that either via unit tests or acceptance tests.

share|improve this answer

I mainly use it to get a view of the "State" of a system at a particular point in execution. It is easier than logging the stack trace, hardware state, and other memory each time I need this data.

I also use it to quickly map a memory address (.text) to the line of code it maps to.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.