ICorDebugAppDomain2

更新:2007 年 11 月

提供处理数组、指针、函数指针和引用类型的方法。此接口是 ICorDebugAppDomain 接口的扩展。

interface ICorDebugAppDomain2 : IUnknown {
        
    HRESULT GetArrayOrPointerType (
        [in] CorElementType    elementType,
        [in] ULONG32           nRank,
        [in] ICorDebugType     *pTypeArg,
        [out] ICorDebugType    **ppType
    );

    HRESULT GetFunctionPointerType ( 
        [in] ULONG32               nTypeArgs,
        [in, size_is(nTypeArgs)] 
            ICorDebugType          *ppTypeArgs[],
        [out] ICorDebugType        **ppType
    );
        
};

方法

方法

说明

ICorDebugAppDomain2::GetArrayOrPointerType 方法

获取指定类型的数组、或一个指向指定类型的指针或对指定类型的引用。

ICorDebugAppDomain2::GetFunctionPointerType 方法

获取一个指向具有给定签名的函数的指针。

要求

**平台:**请参见 .NET Framework 系统要求

**头文件:**CorDebug.idl

**库:**CorGuids.lib

**.NET Framework 版本:**3.5 SP1、3.5、3.0 SP1、3.0、2.0 SP1、2.0

请参见

参考

ICorDebugAppDomain

其他资源

调试接口