Gets the number of elements contained in the System.Collections.Generic.ICollection.
The number of elements contained in the System.Collections.Generic.ICollection.
Gets a value indicating whether the System.Collections.Generic.ICollection is read-only.
true if the System.Collections.Generic.ICollection is read-only; otherwise, false.
Adds an item to the System.Collections.Generic.ICollection.
The object to add to the System.Collections.Generic.ICollection.
Removes all items from the System.Collections.Generic.ICollection.
Determines whether the System.Collections.Generic.ICollection contains a specific value.
The object to locate in the System.Collections.Generic.ICollection.
true if item is found in the System.Collections.Generic.ICollection; otherwise, false.
Determines the index of a specific item in the System.Collections.Generic.IList.
The object to locate in the System.Collections.Generic.IList.
The index of item if found in the list; otherwise, -1.
Inserts an item to the System.Collections.Generic.IList at the specified index.
The zero-based index at which item should be inserted.
The object to insert into the System.Collections.Generic.IList.
Removes the first occurrence of a specific object from the System.Collections.Generic.ICollection.
The object to remove from the System.Collections.Generic.ICollection.
true if item was successfully removed from the System.Collections.Generic.ICollection; otherwise, false. This method also returns false if item is not found in the original System.Collections.Generic.ICollection.
Removes the System.Collections.Generic.IList item at the specified index.
The zero-based index of the item to remove.
Represents a collection of objects that can be individually accessed by index.