How to view DLL functions?
Solution 1:
For native code it's probably best to use Dependency Walker. It also possible to use dumpbin command line utility that comes with Visual Studio.
Solution 2:
Use the free DLL Export Viewer, it is very easy to use.
Solution 3:
You may try the Object Browser in Visual Studio.
Select Edit Custom Component Set. From there, you can choose from a variety of .NET, COM or project libraries or just import external DLLs via Browse.
Solution 4:
Use dumpbin
command-line.
-
dumpbin /IMPORTS <path-to-file>
should provide the function imported into that DLL. -
dumpbin /EXPORTS <path-to-file>
should provide the functions it exports.
Solution 5:
Use dotPeek by JetBrains.
https://www.jetbrains.com/decompiler/
dotPeek is a free tool based on ReSharper. It can reliably decompile any .NET assembly into C# or IL code.