How do I determine the file and line # of a C# method from a symbols (.pdb) file? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T11:29:28Z http://stackoverflow.com/feeds/question/161170 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/161170/how-do-i-determine-the-file-and-line-of-a-c-method-from-a-symbols-pdb-file 3 How do I determine the file and line # of a C# method from a symbols (.pdb) file? aaronjensen 2008-10-02T07:08:53Z 2008-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#161242 1 Answer by Roger Lipscombe for How do I determine the file and line # of a C# method from a symbols (.pdb) file? Roger Lipscombe 2008-10-02T07:46:30Z 2008-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#161823 3 Answer by madgnome for How do I determine the file and line # of a C# method from a symbols (.pdb) file? madgnome 2008-10-02T11:33:10Z 2008-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>