Click or drag to resize
IListT Interface
Represents a collection of objects that can be individually accessed by index.

Namespace: System.Collections.Generic
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public interface IList<T> : ICollection<T>, 
	IEnumerable<T>, IEnumerable

Type Parameters

T
The type of elements in the list.

The IListT type exposes the following members.

Methods
  NameDescription
Public methodAdd (Inherited from ICollectionT.)
Public methodClear (Inherited from ICollectionT.)
Public methodContains (Inherited from ICollectionT.)
Public methodCopyTo (Inherited from ICollectionT.)
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
(Inherited from IEnumerableT.)
Public methodIndexOf
Determines the index of a specific item in the IListT.
Public methodInsert
Inserts an item to the IListT at the specified index.
Public methodRemoveAt
Removes the IListT item at the specified index.
Top
Properties
See Also