Add a more functional (i.e. fewer-stubs) implementation of System.Data.Linq.
[mono.git] / mcs / docs / ecma334 / 14.5.6.2.xml
1 <?xml version="1.0"?>
2 <clause number="14.5.6.2" title="Indexer access">
3   <paragraph>For an indexer access, the <non_terminal where="14.5">primary-no-array-creation-expression</non_terminal> of the element-accessmust be a variable or value of a class, struct, or interface type, and this type must implement one or more indexers that are applicable with respect to the <non_terminal where="14.5.6">expression-list</non_terminal> of the <non_terminal where="14.5.6">element-access</non_terminal>. </paragraph>
4   <paragraph>The compile-time processing of an indexer access of the form P[A], where P is a  <non_terminal where="14.5">primary-no-array-creation-expression</non_terminal> of a class, struct, or interface type T, and A is an <non_terminal where="14.5.6">expression-list</non_terminal>, consists of the following steps: <list><list_item> The set of indexers provided by T is constructed. The set consists of all indexers declared in T or a base type of T that are not override declarations and are accessible in the current context (<hyperlink>10.5</hyperlink>). </list_item><list_item> The set is reduced to those indexers that are applicable and not hidden by other indexers. The following rules are applied to each indexer S.I in the set, where S is the type in which the indexer I is declared: </list_item><list><list_item> If I is not applicable with respect to A (<hyperlink>14.4.2.1</hyperlink>), then I is removed from the set. </list_item><list_item> If I is applicable with respect to A (<hyperlink>14.4.2.1</hyperlink>), then all indexers declared in a base type of S are removed from the set. </list_item></list><list_item> If the resulting set of candidate indexers is empty, then no applicable indexers exist, and a compile-time error occurs. If the candidate indexers are not all declared in the same type, the indexer access is ambiguous, and a compile-time error occurs (this latter situation can only occur for an indexer access on an instance of an interface that has multiple direct base interfaces). </list_item><list_item> The best indexer of the set of candidate indexers is identified using the overload resolution rules of <hyperlink>14.4.2</hyperlink>. If a single best indexer cannot be identified, the indexer access is ambiguous, and a compile-time error occurs. </list_item><list_item> The index expressions of the <non_terminal where="14.5.6">expression-list</non_terminal> are evaluated in order, from left to right. The result of processing the indexer access is an expression classified as an indexer access. The indexer access expression references the indexer determined in the step above, and has an associated instance expression of P and an associated argument list of A. </list_item></list></paragraph>
5   <paragraph>Depending on the context in which it is used, an indexer access causes invocation of either the get-accessor or the set-accessor of the indexer. If the indexer access is the target of an assignment, the set-accessor is invoked to assign a new value (<hyperlink>14.13.1</hyperlink>). In all other cases, the get-accessor is invoked to obtain the current value (<hyperlink>14.1.1</hyperlink>). </paragraph>
6 </clause>