Get the file name from a dll.

G

Guest

Hi,

I want to enumerate all public methods from an assembly (a C# DLL) and list
the *.cs filename, where was the particular method defined (the source code
for the method).

I know how to enumerate all public methods from DLL, but I don't know how to
get the information about the method source *.cs file.

How could I do it?

Thanks,

Lubomir
 
G

Guest

Lubomir said:
I want to enumerate all public methods from an assembly (a C# DLL) and list
the *.cs filename, where was the particular method defined (the source code
for the method).

I know how to enumerate all public methods from DLL, but I don't know how to
get the information about the method source *.cs file.

How could I do it?

You can not.

The source code could have been deleted.

Or it could come from another PC.

Arne
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top