Files
2026-06-04 11:42:34 +02:00

23 lines
655 B
C#

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