.NET 中 x86 和 64 位程序集之间的差异

发布于 2024-09-05 20:22:27 字数 90 浏览 3 评论 0原文

有人可以告诉我 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 技术交流群。

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

发布评论

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

评论(3

明媚如初 2024-09-12 20:22:27

.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.

携余温的黄昏 2024-09-12 20:22:27

在与其他应用程序交互(通过 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文