C#判断系统是32位还是64位

bool type;
type = Environment.Is64BitOperatingSystem;
Console.WriteLine(type);
原文地址:https://www.cnblogs.com/wzwyc/p/6292223.html