I built an application that is handling an error and returning the following error msg:

System.NullReferenceException:  
Object reference not set to an instance of an object. 
  at MyApp.Submit_Click(Object sender,EventArgs e)

I'm not getting any stack trace and I don't see an issue with the exception not being properly thrown.

I have a few questions about how to capture this information:

  1. I am recording the exception.ToString() which usually gives me the exception, inner exception, and stacktrace in my code. Do I need the .pdb file to get the stack trace, or will the .pdb only get add the line numbers?
  2. I have a .pdb file in production with the associated dll but I believe the pdb file is from an older build. Could this cause problems with capturing debugging information and be worse than having no .pdb file at all?

Thanks for the help!

link|improve this question
post the code in MyApp.Submit_Click(). Given that you know the method, why can't you just set a breakpoint and debug into it? – Mitch Wheat Jan 5 at 1:17
feedback

1 Answer

No, you do not need the pdb to see the stack trace, but you will need it in order to get the line numbers. And, if you have an out of sync version, you may end up reporting incorrect line numbers.

Your error message does show you the stack trace, there just isn't much of one since it is a button click:

at MyApp.Submit_Click(Object sender,EventArgs e)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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