Platform 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.
public enum class Platform
public enum Platform
type Platform =
Public Enum Platform
- Inheritance
-
Platform
Fields
Name | Value | Description |
---|---|---|
AnyCpu | 0 | AnyCPU (default) compiles the assembly to run on any platform. |
X86 | 1 | x86 compiles the assembly to be run by the 32-bit, x86-compatible common language runtime. |
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. |
Itanium | 3 | Itanium compiles the assembly to be run by the 64-bit common language runtime on a computer with an Itanium processor. |
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. |