CodeArrayIndexerExpression Class
Assembly: System (in system.dll)
'Declaration <SerializableAttribute> _ <ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)> _ <ComVisibleAttribute(True)> _ Public Class CodeArrayIndexerExpression Inherits CodeExpression 'Usage Dim instance As CodeArrayIndexerExpression
/** @attribute SerializableAttribute() */ /** @attribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) */ /** @attribute ComVisibleAttribute(true) */ public class CodeArrayIndexerExpression extends CodeExpression
SerializableAttribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) ComVisibleAttribute(true) public class CodeArrayIndexerExpression extends CodeExpression
Not applicable.
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]
// Create an array indexer expression that references index 5 of array "x"
CodeArrayIndexerExpression ci1 =
new CodeArrayIndexerExpression(
new CodeVariableReferenceExpression("x"),
new CodeExpression[] { new CodePrimitiveExpression((Int32)5) });
// A VJ# code generator produces the following source code for the
// preceeding example code:
// x[5]
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeArrayIndexerExpression
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.