IDebugHostType2::CreateArrayOf method (dbgmodel.h)

For any given type, this returns a new IDebugHostType which is an array of this type. The dimensions of the array must be supplied via the "dimensions" and "pDimensions" arguments.

Syntax

HRESULT CreateArrayOf(
  ULONG64        dimensions,
  ArrayDimension *pDimensions,
  IDebugHostType **newType
);

Parameters

dimensions

The number of dimensions of the array type to create.

pDimensions

A pointer to an array of ArrayDimension structures describing the structure of each dimension of the array type to create.

newType

The newly created array type will be returned here.

Return value

This method returns HRESULT which indicates success or failure.

Requirements

Requirement Value
Header dbgmodel.h

See also

IDebugHostType2 interface