简体   繁体   中英

How to develop C # console application for windows 2008 64 bit?

我想知道,我可以在带有Visual Studio 2010的Windows 7 PC上为Windows 2008 64位创建ac#控制台应用程序。如果是,如何?

In your Solution Explorer, right click on your project and select Properties .

Under Build tab, change Platform target to x64 .

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM