Show / Hide Table of Contents

    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

    Namespace: Lucene.Net.Support.C5
    Assembly: Lucene.Net.dll
    Syntax
    public interface IReadOnlyList<out T> : IReadOnlyCollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.IEnumerable
    Type Parameters
    Name Description
    T

    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
    Type Description
    T
    • Improve this Doc
    • View Source
    Back to top Copyright © 2020 Licensed to the Apache Software Foundation (ASF)