Name | Description | |
---|---|---|
Add | Overloaded. Adds an item to the collection. | |
AddRange | Overloaded. Adds a range of items of the specified collection to the end of the collection. | |
Clear | Clears all items in the collection. | |
Contains | Determines whether the collection contains the specified item. | |
CopyTo | Copies the elements of the System.Collections.ICollection to an System.Array, starting at a particular System.Array index. | |
Find | Finds the value by comparer from the start index. | |
FindAllObject | Finds the first item in the list that matches the specified object. | |
FindAllString | Finds the first item in the collection that starts with the specified string. | |
FindAllStringExact | Finds the first item in the list that matches the specified string. | |
FindObject | Finds the first item after specifed index that matches the specified object. | |
FindString | Finds the first item after the given index which starts with the given string. | |
FindStringExact | Finds the first item after the specified index that matches the specified string. | |
GetEnumerator | Gets the enumerator of the collection. | |
GetObjectData | Gets the object data. | |
IndexOf | Gets the item index. | |
Insert | Inserts an item in the collection at the specified position. | |
Remove | Deletes a specific item from the collection. | |
RemoveAt | Removes the item at the specific position from the collection. | |
ToArray | Copies the subitems of the collection to a new array. |