Platform Enum

Definition

public enum class Platform
public enum Platform
type Platform = 
Public Enum Platform
Inheritance
Platform

Fields

AnyCpu 0

AnyCPU (default) compiles the assembly to run on any platform.

AnyCpu32BitPreferred 4

Compiles your assembly to run on any platform. Your application runs in 32-bit mode on systems that support both 64-bit and 32-bit applications.

Arm 5

Compiles your assembly to run on a computer that has an Advanced RISC Machine (ARM) processor.

Arm64 6

Compiles your assembly to run on a computer that has an Advanced RISC Machine 64 bit (ARM64) processor.

Itanium 3

Itanium compiles the assembly to be run by the 64-bit common language runtime on a computer with an Itanium processor.

X64 2

x64 compiles the assembly to be run by the 64-bit common language runtime on a computer that supports the AMD64 or EM64T instruction set.

X86 1

x86 compiles the assembly to be run by the 32-bit, x86-compatible common language runtime.

Applies to