internal static bool IsRunningOnProcessorArchitectureARM()
 {
     WorkflowRuntimeCompilation.NativeMethods.SYSTEM_INFO sYSTEMINFO = new WorkflowRuntimeCompilation.NativeMethods.SYSTEM_INFO();
     WorkflowRuntimeCompilation.NativeMethods.GetSystemInfo(ref sYSTEMINFO);
     return(sYSTEMINFO.wProcessorArchitecture == 5);
 }
 internal static extern void GetSystemInfo(ref WorkflowRuntimeCompilation.NativeMethods.SYSTEM_INFO lpSystemInfo);
		internal static bool IsRunningOnProcessorArchitectureARM()
		{
			WorkflowRuntimeCompilation.NativeMethods.SYSTEM_INFO sYSTEMINFO = new WorkflowRuntimeCompilation.NativeMethods.SYSTEM_INFO();
			WorkflowRuntimeCompilation.NativeMethods.GetSystemInfo(ref sYSTEMINFO);
			return sYSTEMINFO.wProcessorArchitecture == 5;
		}