CodeArrayIndexerExpression Class
Represents a reference to an index of an array.
Assembly: System (in System.dll)
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" Dim ci1 As New CodeArrayIndexerExpression(New CodeVariableReferenceExpression("x"), New CodePrimitiveExpression(5)) ' A Visual Basic code generator produces the following source code for the preceeding example code: ' x[5]
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeArrayIndexerExpression
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.