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:
- 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? - 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!