CodeTypeRef2::CreateArrayType Method (Int32)

 

Creates an array of specified type, and inserts it into the code in the correct location.

Namespace:   EnvDTE80
Assembly:  EnvDTE80 (in EnvDTE80.dll)

CodeTypeRef^ CreateArrayType(
	int Rank = 1
)

Parameters

Rank
Type: System::Int32

Optional. Default value = 1. The number of dimensions in the type array.

Return Value

Type: EnvDTE::CodeTypeRef^

A CodeTypeRef object.

The returned CodeTypeRef object has a TypeKind property of vsCMTypeRefArray, and an ElementType that is a copy of the CodeTypeRef object upon which CreateArrayType was invoked. The Parent property is Nothing because no CodeElement has a Type property that refers to the newly-created CodeTypeRef object.

System_CAPS_noteNote

The values of code model elements such as classes, structs, functions, attributes, delegates, and so forth can be non-deterministic after making certain kinds of edits, meaning that their values cannot be relied upon to always remain the same.

Return to top
Show: