mscorlib(4.0.0.0) API with additions
IList.cs
2 
4 {
7  [TypeDependency("System.SZArrayHelper")]
8  [__DynamicallyInvokable]
9  public interface IList<T> : ICollection<T>, IEnumerable<T>, IEnumerable
10  {
17  [__DynamicallyInvokable]
18  T this[int index]
19  {
20  [__DynamicallyInvokable]
21  get;
22  [__DynamicallyInvokable]
23  set;
24  }
25 
29  [__DynamicallyInvokable]
30  int IndexOf(T item);
31 
38  [__DynamicallyInvokable]
39  void Insert(int index, T item);
40 
46  [__DynamicallyInvokable]
47  void RemoveAt(int index);
48  }
49 }
Definition: __Canon.cs:3
Exposes the enumerator, which supports a simple iteration over a collection of a specified type....
Definition: IEnumerable.cs:9
void RemoveAt(int index)
Removes the T:System.Collections.Generic.IList`1 item at the specified index.
void Insert(int index, T item)
Inserts an item to the T:System.Collections.Generic.IList`1 at the specified index.
Defines methods to manipulate generic collections.
Definition: ICollection.cs:9
int IndexOf(T item)
Determines the index of a specific item in the T:System.Collections.Generic.IList`1.
Represents a collection of objects that can be individually accessed by index.
Definition: IList.cs:9