Not
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Gets an array of the specified type, or a pointer or reference to the specified type.
HRESULT GetArrayOrPointerType (
[in] CorElementType elementType,
[in] ULONG32 nRank,
[in] ICorDebugType *pTypeArg,
[out] ICorDebugType **ppType
);
Parameters
elementType
[in] A value of the CorElementType enumeration that specifies the underlying native type (an array, pointer, or reference) to be created.nRank
[in] The rank (that is, number of dimensions) of the array. This value must be 0 if elementType specifies a pointer or reference type.pTypeArg
[in] A pointer to an ICorDebugType object that represents the type of array, pointer, or reference to be created.ppType
[out] A pointer to the address of an ICorDebugType object that represents the constructed array, pointer type, or reference type.
Remarks
The value of elementType must be one of the following:
ELEMENT_TYPE_PTR
ELEMENT_TYPE_BYREF
ELEMENT_TYPE_ARRAY or ELEMENT_TYPE_SZARRAY
If the value of elementType is ELEMENT_TYPE_PTR or ELEMENT_TYPE_BYREF, nRank must be zero.
Requirements
Platforms: See .NET Framework System Requirements.
Header: CorDebug.idl
Library: CorGuids.lib
.NET Framework Versions: 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0