.NET Framework Class Library
StringCollection Methods
The StringCollection type exposes the following members.
Methods
| Name | Description | |
|---|---|---|
|
Add | Adds a string to the end of the StringCollection. |
|
AddRange | Copies the elements of a string array to the end of the StringCollection. |
|
Clear | Removes all the strings from the StringCollection. |
|
Contains | Determines whether the specified string is in the StringCollection. |
|
CopyTo | Copies the entire StringCollection values to a one-dimensional array of strings, starting at the specified index of the target array. |
|
Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
|
GetEnumerator | Returns a StringEnumerator that iterates through the StringCollection. |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetType | Gets the Type of the current instance. (Inherited from Object.) |
|
IndexOf | Searches for the specified string and returns the zero-based index of the first occurrence within the StringCollection. |
|
Insert | Inserts a string into the StringCollection at the specified index. |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
Remove | Removes the first occurrence of a specific string from the StringCollection. |
|
RemoveAt | Removes the string at the specified index of the StringCollection. |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Extension Methods
| Name | Description | |
|---|---|---|
|
AsParallel | Enables parallelization of a query. (Defined by ParallelEnumerable.) |
|
AsQueryable | Converts an IEnumerable to an IQueryable. (Defined by Queryable.) |
|
Cast<TResult> | Converts the elements of an IEnumerable to the specified type. (Defined by Enumerable.) |
|
OfType<TResult> | Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable.) |
Explicit Interface Implementations
| Name | Description | |
|---|---|---|
|
ICollection.CopyTo | Copies the entire StringCollection to a compatible one-dimensional Array, starting at the specified index of the target array. |
|
IEnumerable.GetEnumerator | Returns a IEnumerator that iterates through the StringCollection. |
|
IList.Add | Adds an object to the end of the StringCollection. |
|
IList.Contains | Determines whether an element is in the StringCollection. |
|
IList.IndexOf | Searches for the specified Object and returns the zero-based index of the first occurrence within the entire StringCollection. |
|
IList.Insert | Inserts an element into the StringCollection at the specified index. |
|
IList.Remove | Removes the first occurrence of a specific object from the StringCollection. |
See Also