CorDebugPlatform 枚举

提供 ICorDebugDataTarget::GetPlatform 方法所使用的目标平台值。

语法

typedef enum CorDebugPlatform  
{  
    CORDB_PLATFORM_WINDOWS_X86,    // Windows on Intel x86  
    CORDB_PLATFORM_WINDOWS_AMD64,  // Windows x64 (AMD64, Intel EM64T)  
    CORDB_PLATFORM_WINDOWS_IA64,   // Windows on Intel IA-64  
    CORDB_PLATFORM_MAC_PPC,        // Macintosh OS on PowerPC  
    CORDB_PLATFORM_MAC_X86,        // Macintosh OS on Intel x86  
    CORDB_PLATFORM_WINDOWS_ARM,    // Windows on ARM  
    CORDB_PLATFORM_MAC_AMD64       // MacOS on Intel x64  
} CorDebugPlatform;  

成员

成员 说明
CORDB_PLATFORM_WINDOWS_X86 目标平台是在 Intel x86 硬件上运行的 Windows。
CORDB_PLATFORM_WINDOWS_AMD64 目标平台是在 AMD64 或 Intel EM64T 硬件上运行的 64 位 Windows。
CORDB_PLATFORM_WINDOWS_IA64 目标平台是在 Intel IA-64 硬件上运行的 32 位 Windows。
CORDB_PLATFORM_MAC_PPC 目标平台是在 PowerPC 硬件上运行的 Macintosh 操作系统。
CORDB_PLATFORM_MAC_X86 目标平台是在 Intel x86 硬件上运行的 Macintosh 操作系统。
CORDB_PLATFORM_WINDOWS_ARM 目标平台是在 Windows ARM 硬件上运行的 Macintosh 操作系统。
CORDB_PLATFORM_MAC_AMD64 目标平台是在 AMD64 硬件上运行的 Macintosh 操作系统。

要求

平台:请参阅系统要求

标头:CorDebug.idl、CorDebug.h

库:CorGuids.lib

.NET Framework 版本:自 4 起可用

CORDB_PLATFORM_WINDOWS_ARM 成员和 CORDB_PLATFORM_MAC_AMD64 成员在 .NET Framework 4.5.2 及更高版本中可用。

请参阅