Mono Class Library: Overview

System.Collections.IList: Method Members

The methods of System.Collections.IList are listed below. For a list of all members, see the IList Members list.

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.