1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#region Assembly System.Runtime.InteropServices.RuntimeInformation, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
// C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.25\ref\net6.0\System.Runtime.InteropServices.RuntimeInformation.dll
#endregion
namespace System.Runtime.InteropServices
{
//
// Summary:
// Indicates the processor architecture.
public enum Architecture
{
//
// Summary:
// An Intel-based 32-bit processor architecture.
X86 = 0,
//
// Summary:
// An Intel-based 64-bit processor architecture.
X64 = 1,
//
// Summary:
// A 32-bit ARM processor architecture.
Arm = 2,
//
// Summary:
// A 64-bit ARM processor architecture.
Arm64 = 3,
//
// Summary:
// The WebAssembly platform.
Wasm = 4,
//
// Summary:
// The S390x platform architecture.
S390x = 5
}
}
|