How do I determine the file and line # of a C# method from a symbols (.pdb) file? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T11:29:28Zhttp://stackoverflow.com/feeds/question/161170http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/161170/how-do-i-determine-the-file-and-line-of-a-c-method-from-a-symbols-pdb-file3How do I determine the file and line # of a C# method from a symbols (.pdb) file?aaronjensen2008-10-02T07:08:53Z2008-10-02T11:33:10Z
<p>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.</p>
<p>I know about <a href="http://blogs.msdn.com/jmstall/archive/2005/08/25/pdb2xml.aspx" rel="nofollow">mdbg</a>, but that is very heavy (I think/hope) for what I want.</p>
http://stackoverflow.com/questions/161170/how-do-i-determine-the-file-and-line-of-a-c-method-from-a-symbols-pdb-file/161242#1612421Answer by Roger Lipscombe for How do I determine the file and line # of a C# method from a symbols (.pdb) file?Roger Lipscombe2008-10-02T07:46:30Z2008-10-02T07:46:30Z<p>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.</p>
http://stackoverflow.com/questions/161170/how-do-i-determine-the-file-and-line-of-a-c-method-from-a-symbols-pdb-file/161823#1618233Answer by madgnome for How do I determine the file and line # of a C# method from a symbols (.pdb) file?madgnome2008-10-02T11:33:10Z2008-10-02T11:33:10Z<p>You should look:</p>
<ul>
<li><a href="http://www.mono-project.com/Cecil" rel="nofollow">Mono.Cecil</a> and especially the Mono.Cecil.Pdb module. It should do what you want and more.</li>
</ul>