Name | Description | |
---|---|---|
![]() | Add | Adds an item to the ICollection. |
![]() | Clear | Removes all items from the ICollection. |
![]() | Contains | Overloaded. Indicates if the collection contains the key |
![]() | CopyTo | Copies the elements of the ICollection to an System.Array, starting at a particular System.Array index. |
![]() | Find | Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire List. |
![]() | FindAll | Retrieves all the elements that match the conditions defined by the specified predicate. |
![]() | GetEnumerator | Returns an enumerator that iterates through the collection. |
![]() | IndexOf | Determines the index of a specific item in the IList. |
![]() | Insert | Inserts an item to the IList at the specified index. |
![]() | Remove | Overloaded. Removes the first occurrence of a specific object from the ICollection. |
![]() | RemoveAt | Removes the IList item at the specified index. |
![]() | TryGetValue | Attempt to get the item with the specified key, returning true if it could be found |