Gets the number of elements contained in the System.Collections.ICollection.
The number of elements contained in the System.Collections.ICollection.
Gets a value indicating whether the System.Collections.IList has a fixed size.
true if the System.Collections.IList has a fixed size; otherwise, false.
Gets a value indicating whether the System.Collections.IList is read-only.
true if the System.Collections.IList is read-only; otherwise, false.
Adds an item to the System.Collections.IList.
The object to add to the System.Collections.IList.
The position into which the new element was inserted, or -1 to indicate that the item was not inserted into the collection.
Removes all items from the System.Collections.IList.
Determines whether the System.Collections.IList contains a specific value.
The object to locate in the System.Collections.IList.
true if the System.Object is found in the System.Collections.IList; otherwise, false.
Determines the index of a specific item in the System.Collections.IList.
The object to locate in the System.Collections.IList.
The index of value if found in the list; otherwise, -1.
Inserts an item to the System.Collections.IList at the specified index.
The zero-based index at which value should be inserted.
The object to insert into the System.Collections.IList.
Removes the first occurrence of a specific object from the System.Collections.IList.
The object to remove from the System.Collections.IList.
Removes the System.Collections.IList item at the specified index.
The zero-based index of the item to remove.
Represents a non-generic collection of objects that can be individually accessed by index.