Cactus Castle

First step to have a dream - go to sleep

0%

Completed the one on the book cover.
My Kitten
The original one below. Looks more lovely.
Original

I bought a book of drawing kitten with color pencil. Start to learn to draw lovely kittens!
My Kitten
Original one from the book:
Original

When you create a new C# application project in Visual Studio 2012, there’s an option called “Prefer 32-bit” for platform target Any CPU.

Since we’re in the 64-bit world, simply make sure you uncheck the option. Otherwise, you will find your program is actually running as a 32-bit process even in 64-bit OS, appeared with name of something like “MyApp.exe *32” in the Task Manager.

The only exception case is that you do want your project to be 32-bit, for example, you’ve referenced some other dll which is not 64-bit compatible.

Refer to this artical for more detailed explaination:
http://blogs.microsoft.co.il/sasha/2012/04/04/what-anycpu-really-means-as-of-net-45-and-visual-studio-11/