共用方式為


ICorDebugEval2::NewParameterizedObject 方法

更新:2007 年 11 月

執行個體化新的參數型型別物件,並且呼叫物件的建構函式方法。

HRESULT NewParameterizedObject (
    [in] ICorDebugFunction     *pConstructor,
    [in] ULONG32               nTypeArgs,
    [in, size_is(nTypeArgs)] ICorDebugType *ppTypeArgs[],
    [in] ULONG32               nArgs,
    [in, size_is(nArgs)] ICorDebugValue *ppArgs[]
);

參數

  • pConstructor
    [in] ICorDebugFunction 物件的指標,這個物件代表要執行個體化之物件的建構函式 (Constructor)。

  • nTypeArgs
    [in] 傳遞的型別引數數目。

  • ppTypeArgs
    [in] 指標的陣列,每個指標各指向 ICorDebugType 物件,表示正在執行個體化之物件的型別引數。

  • nArgs
    [in] 傳遞至建構函式的引數數目。

  • ppArgs
    [in] 指標的陣列,每個指標各指向 ICorDebugValue 物件,表示傳遞至建構函式的引數值。

備註

此物件的建構函式可接受 Type 參數。

需求

**平台:**請參閱 .NET Framework 系統需求

**標頭:**CorDebug.idl

**程式庫:**CorGuids.lib

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

請參閱

參考

ICorDebugEval2