ProcessorArchitecture Enum

Definition

Identifies the processor and bits-per-word of the platform targeted by an executable.

public enum class ProcessorArchitecture
public enum ProcessorArchitecture
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public enum ProcessorArchitecture
type ProcessorArchitecture = 
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type ProcessorArchitecture = 
Public Enum ProcessorArchitecture
Inheritance
ProcessorArchitecture
Attributes

Fields

Amd64 4

A 64-bit processor based on the x64 architecture.

Arm 5

An ARM processor.

IA64 3

A 64-bit Intel Itanium processor only.

MSIL 1

Neutral with respect to processor and bits-per-word.

None 0

An unknown or unspecified combination of processor and bits-per-word.

X86 2

A 32-bit Intel processor, either native or in the Windows on Windows environment on a 64-bit platform (WOW64).

Remarks

Not all combinations of PortableExecutableKinds and ImageFileMachine describe valid PE file types. ProcessorArchitecture is the set of combinations of PortableExecutableKinds and ImageFileMachine that describe valid PE file types for managed code.

Applies to