次の方法で共有


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

その他の技術情報

デバッグのインターフェイス