IList Interface |
Namespace: System.Collections
public interface IList : ICollection, IEnumerable
The IList type exposes the following members.
Name | Description | |
---|---|---|
![]() | Add | Adds an item to the IList. |
![]() | Clear | Removes all items from the IList. |
![]() | CopyTo | (Inherited from ICollection.) |
![]() | GetEnumerator | Returns an enumerator that iterates through a collection. (Inherited from IEnumerable.) |
![]() | Remove | Removes the first occurrence of a specific object from the IList. |
Name | Description | |
---|---|---|
![]() | Count | Gets the number of elements contained in the ICollection. (Inherited from ICollection.) |
![]() | IsFixedSize | Gets a value indicating whether the IList has a fixed size. |
![]() | IsSynchronized | Gets a value indicating whether access to the ICollection is synchronized (thread safe). (Inherited from ICollection.) |