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



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

i've built project in micorosft visual c# in 32bit windows scheme , , works fine there need able open project , little bit of work on other scheme has 64bit windows. there way can that?

.net architecture-independent. work out-of-the-box.

if uses p/invoke, you'll need create sure you're using int , intptr correctly work on 64-bit systems too.

if uses 32-bit-only com libraries, you'll need set target platform x86 rather any cpu.

c# visual-studio-2010 32bit-64bit

Comments

Popular posts from this blog

c# - Move local mssql database to webhosted MYSQL -

java - How to pass parameters between Request-Scoped Controllers? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -