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
Post a Comment