opening a 32bit visual C# project in 64bit OS
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
.
精彩评论