The members of System.Collections.IList are listed below.
Public Properties
[read-only] | IsFixedSize | bool. Gets a bool value indicating whether the current instance has a fixed size. |
[read-only] | IsReadOnly | bool. Gets a value indicating whether the current instance is read-only. |
default property | Item(int) | object. Gets or sets the element at the specified index in the current
instance. |
Public Methods
| Add(object) : int Adds an item to the current instance. |
| Clear() Removes all items from the current instance. |
| Contains(object) : bool Determines whether the current instance contains a specific value. |
| IndexOf(object) : int Determines the index of a specific item in the current
instance. |
| Insert(int, object) Inserts an item to the current instance at the
specified position. |
| Remove(object) Removes the first occurrence of a specified object from
the current instance. |
| RemoveAt(int) Removes the item at the specified
index of the current instance. |
Extension Methods