up vote 6 down vote favorite
1
share [g+] share [fb]

pdb files contain symbol information for .NET assemblies. I'd like to read a pdb file in order to correlate methods with their file location. The data is contained within it but I can't seem to find a good description of how to get it out.

I know about mdbg, but that is very heavy (I think/hope) for what I want.

link|improve this question

Doesn't the stack trace include the line numbers against the source file it was compiled from. – Slace Oct 2 '08 at 11:37
Yes, but I need this without having to call into the method and especially without it throwing an exception I'm catching. – Aaron Jensen Oct 2 '08 at 15:14
feedback

2 Answers

up vote 3 down vote accepted

You should look:

  • Mono.Cecil and especially the Mono.Cecil.Pdb module. It should do what you want and more.
link|improve this answer
feedback

In DBGHELP.DLL, you can use the SymGetLineFromAddr64 function. You'll need to use P/Invoke. There might be a corresponding API in the DIA SDK, but I'm not as familiar with it as I am DBGHELP.

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.