How do I get the line number and path of a method from a pdb using .Net?
-
Given an assembly and its pdb, how do I get the line number and path to a method using .Net?
-
Answer:
You will need to use the http://msdn.microsoft.com/en-us/library/t6tay6cz.aspx. Microsoft does not have a managed interface for it, but http://stackoverflow.com/questions/697541/how-do-i-use-the-ms-dia-sdk-from-c has been asked on StackOverflow before. If you are going to try it out in native first you can get the information in question by getting the IDiaSymbol instance for the PDB in question, this is called the http://msdn.microsoft.com/en-us/library/fkcc8hx6.aspx. Once you have that you will call http://msdn.microsoft.com/en-us/library/yfx1573w.aspx passing it the SymTagFunction enumeration which of type http://msdn.microsoft.com/en-us/library/bkedss5f.aspx. You will then need to enumerate over them and use an IDiaSession, previously made to get the global IDiaSymbol, instance to find the correct source and line number.
Simon at Stack Overflow Visit the source
Related Q & A:
- How can I get a Vanity number?Best solution by phonenumberguy.com
- How do I get a nice face next to my name instead of a sillhouette?Best solution by Yahoo! Answers
- How can I get a line cook job at Olive Garden?Best solution by Yahoo! Answers
- How can I get an audio alert when I get a new e-mail?Best solution by Yahoo! Answers
- How can I get a job at a resort for a Summer?Best solution by eHow old
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.