For my application I'd like to parse through an assembly and extract every method and store the name of the method and the source code in one of my objects (I defined in my code).

where should I start to implement that?

EDIT: From the answers & comments i saw that it is not so easy to get source code from the assemblies. Then where should I start if I want to get source code from source code files that are not in my current solution (visual studio)?

link|improve this question

2  
What makes you think you can get source code out of an assembly? – Hans Passant Nov 17 '10 at 18:41
My brain....... – Roflcoptr Nov 17 '10 at 18:56
I think before you start to ask a question like this, you need to learn a little bit more about a pretty fundamental programming/cs topic called "compilation" :P. C# isn't interpreted. – TheCloudlessSky Nov 17 '10 at 19:50
Well, Reflector does a pretty good job of it. – reinierpost Nov 19 '10 at 12:18
feedback

4 Answers

up vote 9 down vote accepted

The assembly doesn't contain the source code. You might be able to extract the IL, but without tools like reflector or ildasm that isn't especially helpful.

To obtain the method names, just something like:

    var assembly = Assembly.GetExecutingAssembly();
    var names = (from type in assembly.GetTypes()
                 from method in type.GetMethods(
                   BindingFlags.Public | BindingFlags.NonPublic |
                   BindingFlags.Instance | BindingFlags.Static)
                 select type.FullName + ":" + method.Name).Distinct().ToList();
link|improve this answer
Thanks for your answer. I edited the question since I dind't know that is not possible to extract source code from a assembly. – Roflcoptr Nov 17 '10 at 19:43
1  
+1 - This is fundamental for using a compiled language. – TheCloudlessSky Nov 17 '10 at 19:53
feedback

To retrieve this debugging information, use the Common Compiler Infrastructure: Metadata API project.

This allows you to read the .pdb files (the files containing the debugging information like source file and line number).

link|improve this answer
Thanks for the hint, but where are these pdb files? – Roflcoptr Nov 17 '10 at 18:58
They are in the bin folder. These are the files where your filenames and lines are stored. – Pieter Nov 17 '10 at 19:52
1  
@Roflcoptr - they are optional and make not exist, or may exist but only be available to the dev team (but not deployed) – Marc Gravell Nov 17 '10 at 19:58
feedback

First you need to find all the types.

See here to do that.

Then you can need to find all the methods for each types.

See here to do that.

If you need an example to bring it all together let me know.

link|improve this answer
Thanks for your answer. I edited the question since I dind't know that is not possible to extract source code from a assembly. – Roflcoptr Nov 17 '10 at 19:44
feedback

I'm not sure how to get the source code, but if you're trying to get information about the methods, you should use reflection.

MethodInfo[] methodInfos = typeof(MyClass).GetMethods(BindingFlags.Public |
                                                  BindingFlags.Static);
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.