在 64 位操作系统中打开 32 位 Visual C# 项目

发布于 2024-11-19 06:02:17 字数 118 浏览 3 评论 0原文

我在 32 位 Windows 系统中用 Micorosft Visual C# 构建了一个项目,它在那里工作正常,但我需要能够打开我的项目并在具有 64 位 Windows 的其他系统上做一些工作。我有办法做到这一点吗?

I've built a project in Micorosft Visual C# in my 32bit windows system , and it works fine there but I need to be able to open my project and do a little bit of my work on my other system which has a 64bit windows. Is there a way I can do that?

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

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

发布评论

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

评论(1

有木有妳兜一样 2024-11-26 06:02:17

.Net 是独立于体系结构的。
它将开箱即用。

如果它使用 P/Invoke,您需要确保正确使用 intIntPtr,以便它也能在 64 位系统上运行。

如果它仅使用 32 位 COM 库,您需要将目标平台设置为 x86 而不是 Any CPU

.Net is architecture-independent.
It will work out-of-the-box.

If it uses P/Invoke, you'll need to make sure that you're using int and IntPtr correctly so that it will work on 64-bit systems too.

If it uses 32-bit-only COM libraries, you'll need to set the Target Platform to x86 rather than Any CPU.

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