If your .NET program throws an exception and is built with a PDB file, the stack trace for this exception message will look like this:
at Program.Main(String[] args) in C:\dev\program.cs:line 262
If you do not have PDB files, it will look like this:
at Program.Main(String[] args)
The difference is that the PDB file gives you the location in the source code where the exception occurred.
gary
source share