CodeArrayIndexerExpression Class
Represents a reference to an index of an array.
Assembly: System (in System.dll)
System.CodeDom::CodeObject
System.CodeDom::CodeExpression
System.CodeDom::CodeArrayIndexerExpression
| Name | Description | |
|---|---|---|
![]() | CodeArrayIndexerExpression() | Initializes a new instance of the CodeArrayIndexerExpression class. |
![]() | CodeArrayIndexerExpression(CodeExpression^, array<CodeExpression^>^) | Initializes a new instance of the CodeArrayIndexerExpression class using the specified target object and indexes. |
| Name | Description | |
|---|---|---|
![]() | Indices | Gets or sets the index or indexes of the indexer expression. |
![]() | TargetObject | Gets or sets the target object of the array indexer. |
![]() | 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.) |
CodeArrayIndexerExpression can be used to represent a reference to an index of an array of one or more dimensions. Use CodeIndexerExpression for representing a reference to an index of a code (non-array) indexer. The TargetObject property indicates the indexer object. The Indices property indicates either a single index within the target array, or a set of indexes that together specify a specific intersection of indexes across the dimensions of the array.
The following code creates a CodeArrayIndexerExpression that references index 5 of an array of integers named x :
// Create an array indexer expression that references index 5 of array "x" array<CodeExpression^>^temp = {gcnew CodePrimitiveExpression( 5 )}; CodeArrayIndexerExpression^ ci1 = gcnew CodeArrayIndexerExpression( gcnew CodeVariableReferenceExpression( "x" ),temp ); // A C# code generator produces the following source code for the preceeding example code: // x[5]
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.


