MakeIndex Method
TOC
Collapse the table of content
Expand the table of content

Expression.MakeIndex Method

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Creates an IndexExpression that represents accessing an indexed property in an object.

Namespace:  System.Linq.Expressions
Assembly:  System.Core (in System.Core.dll)

public static IndexExpression MakeIndex(
	Expression instance,
	PropertyInfo indexer,
	IEnumerable<Expression> arguments
)

Parameters

instance
Type: System.Linq.Expressions.Expression
The object to which the property belongs. It should be null if the property is static (shared in Visual Basic).
indexer
Type: System.Reflection.PropertyInfo
An Expression representing the property to index.
arguments
Type: System.Collections.Generic.IEnumerable<Expression>
An IEnumerable<Expression> (IEnumerable (Of Expression) in Visual Basic) that contains the arguments that will be used to index the property.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft