MSDN says this about the StackTrace property of the Exception class:

The StackTrace property holds a stack trace, which you can use to determine where in the code the error occurred. StackTrace lists all the called methods that preceded the exception and the line numbers in the source where the calls were made.

So I know that this information is available. How do I get the line numbers to actually show up in the stack trace? My code is throwing an exception in a very difficult and complex piece of code that goes through TONS of objects, so I don't want to step through a bazillion times to see where the exception is happening. The stack trace of the exception only shows method signatures and no line numbers.

link|improve this question

If you're debugging the code, you can tell Visual Studio to break on the exception in the Debug menu. – Jason Goemaat Sep 24 '10 at 23:42
If I knew the line number where the exception was being thrown, I could do that. – Christopher Perry Sep 27 '10 at 17:15
feedback

2 Answers

up vote 4 down vote accepted

To get the line numbers in the StackTrace, you need to have the correct debug information (PDB files) alongside your dlls/exes. To generate the the debug information, set the option in Project Properties -> Build -> Advanced -> Debug Info:

alt text

Setting it to full should suffice (see the MSDN docs for what the other options do). Debug info (ie. PDB files) are generated for Debug build configurations by default, but can also be generated for Release build configurations.

Generating PDBs for release builds enables you to ship you code without the PDBs, but to drop the PDBs next to the dlls if you need line numbers (or even to attach a remote debugger). One thing to note is that in a release build, the line numbers may not be entirely correct due to optimisations made by the compiler or the JIT compiler (this is especially so if the line numbers show as 0).

link|improve this answer
MSDN says that you cannot remotely debug unless you set /debug:full. I wonder if this means that if you set /debug:full you can attach and debug with the source even without the source code and /debug:pdbonly is sufficient if you have the source and don't mind occasional misplacement of the execution point. – axk Jun 8 '11 at 13:16
feedback

You have to build the project with pdb files enabled and make sure your deploy the pdb files with your application. You can check if pdb files are in fact being built for you configuration by right clicking on the assembly you require pdb files for, then heading to Properties > Build > Advanced and making sure that under Output Debug Info is set to full.

link|improve this answer
My PDBs are there, and everything is set properly. Still a no go. – Christopher Perry Sep 27 '10 at 17:13
feedback

Your Answer

 
or
required, but never shown

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