Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I View the functions inside of DLLs?

Is there a way you can open and view the code in a DLL (i.e., see functions/methods, signatures, and the code inside those functions or methods?)

Is there a way to view any headers inside the DLL as well as the authorship information for a DLL?

like image 252
Russel Avatar asked Feb 27 '23 21:02

Russel


2 Answers

for non-.Net windows DLLs, there is this one here:

http://www.dependencywalker.com/

like image 152
Stefan Egli Avatar answered Mar 01 '23 11:03

Stefan Egli


If they are .NET DLLs, you can find out a remarkable amount, including disassembling the code, using redgate's free tool "Reflector" - see http://www.red-gate.com/products/reflector/

like image 39
Carson63000 Avatar answered Mar 01 '23 10:03

Carson63000