IList Methods
.NET Framework 2.0
| Name | Description | |
|---|---|---|
| Add | Adds an item to the IList. |
| Clear | Removes all items from the IList. |
| Contains | Determines whether the IList contains a specific value. |
| IndexOf | Determines the index of a specific item in the IList. |
| Insert | Inserts an item to the IList at the specified index. |
| Remove | Removes the first occurrence of a specific object from the IList. |
| RemoveAt | Removes the IList item at the specified index. |