Environment.Is64BitOperatingSystem
应该做得很好
Determines whether the current operating system is a 64-bit operating system.
假设虚假表示32位环境。
如果您想了解该进程是否64位(您可以在64位操作系统上运行32位进程),请使用Environment.Is64BitProcess:
Determines whether the current process is a 64-bit process.
这两个都是在.NET 4.0中引入的。