The methods of the IList interface are listed below. For a complete list of IList interface members, see the IList Members topic.
Add | When implemented by a class, adds an item to the IList. |
Clear | When implemented by a class, removes all items from the IList. |
Contains | When implemented by a class, determines if the IList contains a specific value. |
IndexOf | When implemented by a class, determines the index of a specific item in the IList. |
Insert | When implemented by a class, inserts an item to the IList at the specified position. |
Remove | When implemented by a class, removes an item from the IList. |
RemoveAt | When implemented by a class, removes the IList item at the specified index. |