How can you determine, at runtime, if your application is running in the 64-bit version of .Net framework 4.0?
1.Check IntPtr.Size property for a value of 8.
2.Call the Environment.GetEnvironmentVariable method and pass in the string "Platform" as an argument. Check for a return value of "x64".
3.Call the WOW64 emulator method Isx64() and check the boolean return value.<br>
4.None of the above
Answer:1
Posted Date:-2022-08-16 05:21:48