Name | Description | |
---|---|---|
Add | Adds a value to the collection. | |
AddRange | Adds the elements of the specified collection to the end of the collection | |
Clear | Removes all values from the collection. | |
Contains | Determines whether the collection contains a specific value. | |
CopyTo | Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array. | |
GetEnumerator | Gets an enumerator that iterates through the collection. | |
IndexOf | Determines the index of the value in the collection. | |
Insert | Inserts a value into the collection at the specified index. | |
Remove | Removes a value from the collection. | |
RemoveAt | Removes a value from the collection at the specified index. |