This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,22 @@
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
}
}