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

I know about DIA api, dbghelp. But can i use them to extract type definition location info such as file, begin_line, begin_column, end_line, end_column from my assembly and pdb generated?

If the answer is yes, can someone point me to the simple example out there?

link|improve this question
When you get the answer, I would like to know as well :) – leppie Mar 27 '09 at 11:40
FYI: classes/structs can be (and often are) partial. – Anton Tykhyy Apr 21 '09 at 9:42
feedback

2 Answers

You could take a look at the Common Compiler Infrastructure - Metadata project on codeplex. It can read pdb files, but there's no way I can see of getting a source location for a class, just members.

link|improve this answer
feedback

The answer is yes, Look at Mono.Cecil

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.