如何测试现有的托管 .NET .dll 以查看其是 32 位还是 64 位?
如何测试现有的托管 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
启动 Visual Studio 2008 命令提示符,转到程序集所在的文件夹,输入“corflags.exe assemblyName.dll”,您应该会得到以下信息
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
请参阅如何确定是否.NET 程序集是为 x86 还是 x64 构建的?
See How to determine if a .NET assembly was built for x86 or x64?