I want to know that ,can I create a c# console application on my windows 7 pc with visual studio 2010 for a windows 2008 64 bit.If yes,How?
问问题
2850 次
2 回答
4
在您的解决方案资源管理器中,右键单击您的项目并选择Properties
.
在Build
选项卡下,更改Platform target
为x64
。
于 2012-09-25T10:10:32.580 回答
3
Absolutely - just create a new Console Application project. By default it will create a project with an assembly which styles itself as x86, but you can change that to AnyCPU if you need to. (The 32-bit app will work fine on the 64-bit machine, although obviously it won't be able to use as much memory, or load 64-bit native libraries.)
于 2012-09-25T10:04:03.000 回答