How to view DLL functions?

2019-01-16 04:51发布

I have a DLL file. How can I view the functions in that DLL?

标签: windows dll
8条回答
疯言疯语
2楼-- · 2019-01-16 05:08

Use the free DLL Export Viewer, it is very easy to use.

查看更多
Animai°情兽
3楼-- · 2019-01-16 05:11

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.

查看更多
神经病院院长
4楼-- · 2019-01-16 05:15

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.

查看更多
冷血范
5楼-- · 2019-01-16 05:18

If a DLL is written in one of the .NET languages and if you only want to view what functions, there is a reference to this DLL in the project.

Then doubleclick the DLL in the references folder and then you will see what functions it has in the OBJECT EXPLORER window

If you would like to view the source code of that DLL file you can use a decompiler application such as .NET reflector. hope this helps you.

查看更多
相关推荐>>
6楼-- · 2019-01-16 05:20

Without telling us what language this dll/assembly is from, we can only guess.

So how about .NET Reflector

查看更多
Luminary・发光体
7楼-- · 2019-01-16 05:25

dumpbin /IMPORTS should provide the function imported into that DLL.
dumpbin /EXPORTS should provide the functions it exports.

查看更多
登录 后发表回答