I am using C#. If I create a solution in Visual Studio 2010 or 2012 I get a default configuration Debug/Release and Platform “Any CPU”. Am I creating a 32 or a 64 bit application?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’re creating a .Net executable that will run on either 32 bit or 64 bit machines in either a 32 or 64-bit context. This actually matters quite a bit if you are using unmanaged resources!
For instance, if you are compiling for AnyCPU but utilize a 32 bit DLL, your application will crash on 64-bit machines.