CodeTypeRef.CreateArrayType Method

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

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

Syntax

'Declaration
Function CreateArrayType ( _
    Rank As Integer _
) As CodeTypeRef
CodeTypeRef CreateArrayType(
    int Rank
)
CodeTypeRef^ CreateArrayType(
    int Rank
)
abstract CreateArrayType : 
        Rank:int -> CodeTypeRef 
function CreateArrayType(
    Rank : int
) : CodeTypeRef

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.

Remarks

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 will be Nothing because no CodeElement has a Type property that refers to the newly-created CodeTypeRef object.

Note

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. For more information, see the section Code Model Element Values Can Change in Discovering Code by Using the Code Model (Visual Basic).

.NET Framework Security

See Also

Reference

CodeTypeRef Interface

EnvDTE Namespace

Other Resources

How to: Compile and Run the Automation Object Model Code Examples

Discovering Code by Using the Code Model (Visual Basic)

Discovering Code by Using the Code Model (Visual C#)