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
Arne Vajhøj - 21 Aug 2007 00:54 GMT
> 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
[quoted text clipped - 4 lines]
>
> How could I do it?
You can not.
The source code could have been deleted.
Or it could come from another PC.
Arne