.NET 中 x86 和 64 位程序集之间的差异
有人可以告诉我 32 位和 64 位 .NET 程序集之间的区别吗?
我明白什么时候需要精确而不是选择AnyCPU配置。
问候, 三田
Could some tell me the difference between 32bit and 64bit .NET assemblies?
I understand when it is needed to be precise instead of selecting AnyCPU configuration.
Regards,
Mita
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
.NET 中的汇编目标很少
* x86 - 32位,应用程序将作为32位进程运行,无论是在Win64上
* x64 - 64位,应用程序将在Win64上作为64位进程运行,并且无法在32位系统上运行。
* AnyCPU - 应用程序将使用最合适的目标。
* IA64 - Intel Itanium 平台
一般来说,在纯托管应用程序中,最合适的目标是 AnyCPU。如果您的应用程序使用 PInvoke 或 COM 组件,您可能需要根据您使用的非托管组件的目标来定位您的应用程序。
There are few assembly targets in .NET
* x86 - 32bit, the application will run as 32bit process, either on Win64
* x64 - 64bit, the application will run as 64bit process on Win64, and fails to run on 32bit system.
* AnyCPU - the application will use the most appropriate targeting.
* IA64 - Intel Itanium platform
Generally, in pure managed applications the most appropriate target is AnyCPU. If your application uses PInvoke or COM components, you are possible needed to target your application according to target of unmanaged component you use.
这些应该为您提供所需的信息:
These should provide you with the information inquired:
在与其他应用程序交互(通过 COM)时,我在运行 x64 位代码时遇到了一些问题。
DLL/EXE 标头中有一些位设置为 x86 或 x64 代码,.Net 加载程序会查看这些位。 IL 没有改变。您甚至可以在编译后使用 CorFlags 进行设置
I've had some issues running x64 bit code, when interacting with other applications (via COM).
There is some bit in the header of the DLL/EXE that is set to x86 or x64 code, that the .Net loader looks at. The IL is not changed. You can even set it after compilation using CorFlags