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