Hello guys, Is it possible to enumerate every function present in a DLL ? How about getting its signature ? Can I do this in C# ? Or do I have to go low level to do this?
Regards and tks, Jose
|
3
|
|||||||||||||
|
|
|
If its a managed dll: Use reflection If its unmanaged: You need to enumerate the DLL export table |
|||
|
|
|
|
For regular win32 DLLs, see the Dumpbin utility. It is included with Visual-C++ (including the free "express" version I believe). example:
|
||
|
|
|
|
You can see all of the exports in a dll by using Dependency Walker, which is a free program from Microsoft: http://en.wikipedia.org/wiki/Dependency_walker |
||
|
|
|
|
If it's a .NET DLL RedGate's Reflector can list the methods and even attempt to disassemble the code. It's a great item for any developer's toolbox and it's free Edit: If you are trying to read the types and methods at runtime you'll want to use Reflection. You would have to load the Finally, Here is a little test method I wrote for executing a method on a loaded object. In this example ClassLibrary1 has one class of Class1:
And here is the test:
|
|||
|