CodeArrayIndexerExpression Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the CodeArrayIndexerExpression class.
Overloads
CodeArrayIndexerExpression() |
Initializes a new instance of the CodeArrayIndexerExpression class. |
CodeArrayIndexerExpression(CodeExpression, CodeExpression[]) |
Initializes a new instance of the CodeArrayIndexerExpression class using the specified target object and indexes. |
CodeArrayIndexerExpression()
Initializes a new instance of the CodeArrayIndexerExpression class.
public:
CodeArrayIndexerExpression();
public CodeArrayIndexerExpression ();
Public Sub New ()
Applies to
CodeArrayIndexerExpression(CodeExpression, CodeExpression[])
Initializes a new instance of the CodeArrayIndexerExpression class using the specified target object and indexes.
public:
CodeArrayIndexerExpression(System::CodeDom::CodeExpression ^ targetObject, ... cli::array <System::CodeDom::CodeExpression ^> ^ indices);
public CodeArrayIndexerExpression (System.CodeDom.CodeExpression targetObject, params System.CodeDom.CodeExpression[] indices);
new System.CodeDom.CodeArrayIndexerExpression : System.CodeDom.CodeExpression * System.CodeDom.CodeExpression[] -> System.CodeDom.CodeArrayIndexerExpression
Public Sub New (targetObject As CodeExpression, ParamArray indices As CodeExpression())
Parameters
- targetObject
- CodeExpression
A CodeExpression that indicates the array the indexer targets.
- indices
- CodeExpression[]
The index or indexes to reference.