使用vb.net代码可以检查电脑是32位还是64?
我只想在一条消息中显示结果。
我只想在一条消息中显示结果。
请指教。
@H_301_4@@H_301_4@
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中引入的。
@H_301_4@