using System; using System.Runtime.InteropServices; namespace System.Reflection { /// Identifies the processor and bits-per-word of the platform targeted by an executable. // Token: 0x02000266 RID: 614 [ComVisible(true)] [Serializable] public enum ProcessorArchitecture { /// An unknown or unspecified combination of processor and bits-per-word. // Token: 0x04000B08 RID: 2824 None, /// Neutral with respect to processor and bits-per-word. // Token: 0x04000B09 RID: 2825 MSIL, /// A 32-bit Intel processor, either native or in the Windows on Windows (WOW) environment on a 64-bit platform. // Token: 0x04000B0A RID: 2826 X86, /// A 64-bit Intel processor only. // Token: 0x04000B0B RID: 2827 IA64, /// A 64-bit AMD processor only. // Token: 0x04000B0C RID: 2828 Amd64 } }