IList - abstract list interface.
IList
| Property name | Brief description | |
| Count | The Count property returns the number of array elements. |
| Method name | Brief description | |
| The Add method adds an element and returns its index. | ||
| The Clear method clears the list. | ||
| The Contains method checks if an element exists. | ||
| The IndexOf method searches the Value value and returns the index in the list. | ||
| The Insert method inserts the element into the specified position. | ||
| The Remove method removes element by the value. | ||
| The RemoveAt method removes an element at the specified position. |
| Method name | Brief description | |
| CopyTo | The CopyTo method copies the collection into an array. |
See also: