开发者

opening a 32bit visual C# project in 64bit OS

开发者 https://www.devze.com 2023-03-18 02:11 出处:网络
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 sys

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?


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

0

精彩评论

暂无评论...
验证码 换一张
取 消