CodeArrayCreateExpression Class
Represents an expression that creates an array.
Assembly: System (in System.dll)
System.CodeDom::CodeObject
System.CodeDom::CodeExpression
System.CodeDom::CodeArrayCreateExpression
| Name | Description | |
|---|---|---|
![]() | CodeArrayCreateExpression() | Initializes a new instance of the CodeArrayCreateExpression class. |
![]() | CodeArrayCreateExpression(CodeTypeReference^, CodeExpression^) | Initializes a new instance of the CodeArrayCreateExpression class using the specified array data type and code expression indicating the number of indexes for the array. |
![]() | CodeArrayCreateExpression(CodeTypeReference^, array<CodeExpression^>^) | Initializes a new instance of the CodeArrayCreateExpression class using the specified array data type and initialization expressions. |
![]() | CodeArrayCreateExpression(CodeTypeReference^, Int32) | Initializes a new instance of the CodeArrayCreateExpression class using the specified array data type and number of indexes for the array. |
![]() | CodeArrayCreateExpression(String^, CodeExpression^) | Initializes a new instance of the CodeArrayCreateExpression class using the specified array data type name and code expression indicating the number of indexes for the array. |
![]() | CodeArrayCreateExpression(String^, array<CodeExpression^>^) | Initializes a new instance of the CodeArrayCreateExpression class using the specified array data type name and initializers. |
![]() | CodeArrayCreateExpression(String^, Int32) | Initializes a new instance of the CodeArrayCreateExpression class using the specified array data type name and number of indexes for the array. |
![]() | CodeArrayCreateExpression(Type^, CodeExpression^) | Initializes a new instance of the CodeArrayCreateExpression class using the specified array data type and code expression indicating the number of indexes for the array. |
![]() | CodeArrayCreateExpression(Type^, array<CodeExpression^>^) | Initializes a new instance of the CodeArrayCreateExpression class using the specified array data type and initializers. |
![]() | CodeArrayCreateExpression(Type^, Int32) | Initializes a new instance of the CodeArrayCreateExpression class using the specified array data type and number of indexes for the array. |
| Name | Description | |
|---|---|---|
![]() | CreateType | Gets or sets the type of array to create. |
![]() | Initializers | Gets the initializers with which to initialize the array. |
![]() | Size | Gets or sets the number of indexes in the array. |
![]() | SizeExpression | Gets or sets the expression that indicates the size of the array. |
![]() | UserData | Gets the user-definable data for the current object.(Inherited from CodeObject.) |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
CodeArrayCreateExpression can be used to represent a code expression that creates an array. Expressions that create an array should specify either a number of elements, or a list of expressions to use to initialize the array.
Most arrays can be initialized immediately following declaration. The Initializers property can be set to the expression to use to initialize the array.
A CodeArrayCreateExpression only directly supports creating single-dimension arrays. If a language allows arrays of arrays, it is possible to create them by nesting a CodeArrayCreateExpression within a CodeArrayCreateExpression. Not all languages support arrays of arrays. You can check whether an ICodeGenerator for a language declares support for nested arrays by calling Supports with the ArraysOfArrays flag.
The following code uses a CodeArrayCreateExpression to create an array of integers with 10 indexes.
// Create an initialization expression for a new array of type Int32 with 10 indices CodeArrayCreateExpression^ ca1 = gcnew CodeArrayCreateExpression( "System.Int32",10 ); // Declare an array of type Int32, using the CodeArrayCreateExpression ca1 as the initialization expression CodeVariableDeclarationStatement^ cv1 = gcnew CodeVariableDeclarationStatement( "System.Int32[]","x",ca1 ); // A C# code generator produces the following source code for the preceeding example code: // int[] x = new int[10];
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


