Läs på engelska Redigera

Dela via


Architecture Enum

Definition

Indicates the processor architecture.

C#
public enum Architecture
Inheritance
Architecture

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:

Applies to

Produkt Versioner
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1

See also