Interface IReadOnlyList<T>
Represents a read-only collection of elements that can be accessed by index.
Enables System.Collections.Generic.IReadOnlyList to be used in .NET 4.5 projects
Assembly: Lucene.Net.dll
Syntax
public interface IReadOnlyList<out T> : IReadOnlyCollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.IEnumerable
Type Parameters
Properties
|
Improve this Doc
View Source
Item[Int32]
Gets the element at the specified index in the read-only list.
Declaration
T this[int index] { get; }
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Property Value