Get the file name from a dll.

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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
 
Back
Top