mscorlib(4.0.0.0) API with additions
IReadOnlyList.cs
2 
4 {
7  [TypeDependency("System.SZArrayHelper")]
8  [__DynamicallyInvokable]
9  public interface IReadOnlyList<out T> : IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable
10  {
14  [__DynamicallyInvokable]
15  T this[int index]
16  {
17  [__DynamicallyInvokable]
18  get;
19  }
20  }
21 }
Definition: __Canon.cs:3
Exposes the enumerator, which supports a simple iteration over a collection of a specified type....
Definition: IEnumerable.cs:9
Represents a strongly-typed, read-only collection of elements.
Represents a read-only collection of elements that can be accessed by index.
Definition: IReadOnlyList.cs:9