如何使我的编译针对Windows 64位进行优化?
您可能还想在运行时进行检查,以确保:
using System; using System.Runtime.InteropServices; class SystemChecker { static bool Is64Bit { get { return Marshal.SizeOf(typeof(IntPtr)) == 8; } } }