CodeArrayIndexerExpression Class
Represents a reference to an index of an array.
System.CodeDom::CodeObject
System.CodeDom::CodeExpression
System.CodeDom::CodeArrayIndexerExpression
Assembly: System (in System.dll)
The CodeArrayIndexerExpression type exposes the following members.
| 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 a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | 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]
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
