using System; using System.Runtime.InteropServices; namespace System.Reflection.Emit { /// Specifies the type of the portable executable (PE) file. // Token: 0x0200020F RID: 527 [ComVisible(true)] [Serializable] public enum PEFileKinds { /// The portable executable (PE) file is a DLL. // Token: 0x04000955 RID: 2389 Dll = 1, /// The application is a console (not a Windows-based) application. // Token: 0x04000956 RID: 2390 ConsoleApplication, /// The application is a Windows-based application. // Token: 0x04000957 RID: 2391 WindowApplication } }