Represents a collection of objects that can be individually accessed by index.
For a list of all members of this type, see IList Members.
[Visual Basic] Public Interface IList Inherits ICollection, IEnumerable [C#] public interface IList : ICollection, IEnumerable [C++] public __gc __interface IList : public ICollection, IEnumerable [JScript] public interface IList implements ICollection, IEnumerable
IList is a descendant of the ICollection interface and is the base interface of all lists. IList implementations fall into three categories: read-only, fixed-size, variable-size. A read-only IList cannot be modified. A fixed-size IList does not allow the addition or removal of elements, but it allows the modification of existing elements. A variable-size IList allows the addition, removal and modification of elements.
Namespace: System.Collections
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework
Assembly: Mscorlib (in Mscorlib.dll)
IList Members | System.Collections Namespace | ICollection