Expression.ArrayIndex Method (Expression, Expression)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Creates a BinaryExpression that represents applying an array index operator to an array of rank one.
Namespace: System.Linq.Expressions
Assembly: System.Core (in System.Core.dll)
Syntax
'Declaration
Public Shared Function ArrayIndex ( _
array As Expression, _
index As Expression _
) As BinaryExpression
public static BinaryExpression ArrayIndex(
Expression array,
Expression index
)
Parameters
- array
Type: System.Linq.Expressions.Expression
A Expression to set the Left property equal to.
- index
Type: System.Linq.Expressions.Expression
A Expression to set the Right property equal to.
Return Value
Type: System.Linq.Expressions.BinaryExpression
A BinaryExpression that has the NodeType property equal to ArrayIndex and the Left and Right properties set to the specified values.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | array or index is nulla null reference (Nothing in Visual Basic). |
ArgumentException | array.Type does not represent an array type. -or- array.Type represents an array type whose rank is not 1. -or- index.Type does not represent the Int32 type. |
Remarks
index must represent an index of type Int32.
The Method property of the resulting BinaryExpression is nulla null reference (Nothing in Visual Basic), and both IsLifted and IsLiftedToNull are set to false. The Type property is equal to the element type of array.Type. The Conversion property is nulla null reference (Nothing in Visual Basic).
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.