Is64BitWindows From Silverlight OOB?
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)
{}
}
精彩评论