IDebugBinder3:: GetTypeArguments

此方法检索类型参数列表与此对象关联的。

HRESULT GetTypeArguments(
   UINT          skip,
   UINT          count,
   IDebugField** ppFields,
   UINT*         pFetched
);
int GetTypeArguments(
   uint          skip,
   uint          count,
   IDebugField[] ppFields,
   out uint      pFetched
);

参数

  • skip
    [in]跳过的字段数。获取参数之前键入。

  • count
    [in] 参数的数字字段返回 (还指定 ppFields 数组的大小)。

  • ppFields
    [in, out] 将填充的数组字段返回此方法。

  • pFetched
    [out] (可选) 参数类型的数字字段实际返回。

返回值

如果成功,则返回; S_OK否则,返回错误代码。

备注

参数类型的数量可能需要获取与 IDebugBinder3:: GetTypeArgumentCount

请参见

参考

IDebugBinder3

IDebugBinder3:: GetTypeArgumentCount