Question:How can you determine, at runtime, if your application is running in the 64-bit version of .Net framework 4.0?
A Check IntPtr.Size property for a value of 8.
B Call the Environment.GetEnvironmentVariable method and pass in the string "Platform" as an argument. Check for a return value of "x64".
C all the WOW64 emulator method Isx64() and check the boolean return value.
+ AnswerA
+ Report