using System; using System.Runtime.InteropServices; namespace System.Reflection { /// Identifies the platform targeted by an executable. // Token: 0x02000244 RID: 580 [ComVisible(true)] [Serializable] public enum ImageFileMachine { /// Targets a 32-bit Intel processor. // Token: 0x04000A58 RID: 2648 I386 = 332, /// Targets a 64-bit Intel processor. // Token: 0x04000A59 RID: 2649 IA64 = 512, /// Targets a 64-bit AMD processor. // Token: 0x04000A5A RID: 2650 AMD64 = 34404 } }