Architecture Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates the processor architecture.
public enum class Architecture
public enum Architecture
type Architecture =
Public Enum Architecture
- Inheritance
Fields
Name | Value | Description |
---|---|---|
X86 | 0 | An Intel-based 32-bit processor architecture. |
X64 | 1 | An Intel-based 64-bit processor architecture. |
Arm | 2 | A 32-bit ARM processor architecture. |
Arm64 | 3 | A 64-bit ARM processor architecture. |
Wasm | 4 | The WebAssembly platform. |
S390x | 5 | The S390x platform architecture. |
LoongArch64 | 6 | A LoongArch64 processor architecture. |
Armv6 | 7 | A 32-bit ARMv6 processor architecture. |
Ppc64le | 8 | A PowerPC 64-bit (little-endian) processor architecture. |
RiscV64 | 9 | A RiscV 64-bit processor architecture. |
Remarks
A member of the Architecture enumeration is returned by the following properties:
The RuntimeInformation.OSArchitecture property.
The RuntimeInformation.ProcessArchitecture property.