vs 工具 dumpbin & corflags
dumpbin 查看 dll 接口函数
> dumpbin /exports "/path/to/dll"
dumpbin 查看 exe、dll 依赖的动态库
> dumpbin /dependents "/path/to/[exe|dll]"
dumpbin 查看 .net 和 非.net dll 位数
> dumpbin /headers "/path/to/dll" FILE HEADER VALUES 32 bit word machine 表示dll是32位
corflags 查看 .net dll 位数
> corflags "/path/to/dll" 32BIT : 1 表示dll是32位 32BIT : 0 表示dll是64位