29 lines
927 B
C#
29 lines
927 B
C#
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
|
|
}
|
|
}
|