天天看点

c#判断程序运行环境的位数

有时需根据不同位数加载不同的库,此方法获取运行环境的位数
if (IntPtr.Size == )
{
    // 64 bit machine
    return true;
}
else if (IntPtr.Size == )
{
    // 32 bit machine
    return false;
}