Why "Any CPU" application runs on 32bit

137 views Asked by At

I create a new C# Console application and there is only one line of code in Main method

Console.ReadKey();

When I build the project with Any CPU platform, the application runs as 32-bit application. (I check this in Task Manager and SigCheck tool). When I build the project with x64 platform, the application runs as 64-bit application.

My question is why the "any cpu" application does not run as 64-bit application in Windows x64.

System: Windows 8.1 x64, Visual studio 2015, .Net framework 4.5.2

0

There are 0 answers