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