如何测试现有的托管 .NET .dll 以查看其是 32 位还是 64 位?

发布于 2024-10-20 11:26:14 字数 191 浏览 1 评论 0原文

如何测试现有的托管 .NET .dll 以查看其是 32 位还是 64 位?

已知的死胡同:

  • “dumpbin /header”不起作用,它返回所有内容的 32 位(它只查看本机 win32 标头)。
  • Dependency Walker 不起作用,因为它适用于本机 win32 .dll。

How do I test an existing managed .NET .dll to see if its 32-bit or 64-bit?

Known dead ends:

  • "dumpbin /header" doesn't work, it returns 32-bit for everything (its only looking at the native win32 headers).
  • Dependency Walker doesn't work, as its for native win32 .dll's.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

遮云壑 2024-10-27 11:26:14

启动 Visual Studio 2008 命令提示符,转到程序集所在的文件夹,输入“corflags.exe assemblyName.dll”,您应该会得到以下信息

Version   : v4.0.30319
CLR Header: 2.5
PE        : PE32
CorFlags  : 1
ILONLY    : 1
32BIT     : 0
Signed    : 0

Start up Visual Studio 2008 Command Prompt, go to the folder your assembly is in type "corflags.exe assemblyName.dll" and you should get the following info back

Version   : v4.0.30319
CLR Header: 2.5
PE        : PE32
CorFlags  : 1
ILONLY    : 1
32BIT     : 0
Signed    : 0
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文