开发者

Is64BitWindows From Silverlight OOB?

开发者 https://www.devze.com 2023-03-25 22:54 出处:网络
How 开发者_运维知识库to check if the Windows machine is 32bit or 64bit from Silverlight OOB.I think this might work

How 开发者_运维知识库to check if the Windows machine is 32bit or 64bit from Silverlight OOB.


I think this might work

if (AutomationFactory.IsAvailable)
{
   if (Environment.OSVersion.Platform == PlatformID.Win32NT)
   {}
}
0

精彩评论

暂无评论...
验证码 换一张
取 消