StringCollection Class
Represents a collection of strings.
Assembly: System (in System.dll)
System.Collections.Specialized.StringCollection
System.Configuration.CommaDelimitedStringCollection
| Name | Description | |
|---|---|---|
![]() | StringCollection() | Initializes a new instance of the StringCollection class. |
| Name | Description | |
|---|---|---|
![]() | Count | Gets the number of strings contained in the StringCollection. |
![]() | IsReadOnly | Gets a value indicating whether the StringCollection is read-only. |
![]() | IsSynchronized | Gets a value indicating whether access to the StringCollection is synchronized (thread safe). |
![]() | Item(Int32) | Gets or sets the element at the specified index. |
![]() | SyncRoot | Gets an object that can be used to synchronize access to the StringCollection. |
| Name | Description | |
|---|---|---|
![]() | Add(String) | Adds a string to the end of the StringCollection. |
![]() | AddRange(String()) | Copies the elements of a string array to the end of the StringCollection. |
![]() | Clear() | Removes all the strings from the StringCollection. |
![]() | Contains(String) | Determines whether the specified string is in the StringCollection. |
![]() | CopyTo(String(), Int32) | 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 the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | IndexOf(String) | Searches for the specified string and returns the zero-based index of the first occurrence within the StringCollection. |
![]() | Insert(Int32, String) | Inserts a string into the StringCollection at the specified index. |
![]() | MemberwiseClone() | |
![]() | Remove(String) | Removes the first occurrence of a specific string from the StringCollection. |
![]() | RemoveAt(Int32) | Removes the string at the specified index of the StringCollection. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | ICollection.CopyTo(Array, Int32) | 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(Object) | Adds an object to the end of the StringCollection. |
![]() ![]() | IList.Contains(Object) | Determines whether an element is in the StringCollection. |
![]() ![]() | IList.IndexOf(Object) | Searches for the specified Object and returns the zero-based index of the first occurrence within the entire StringCollection. |
![]() ![]() | IList.Insert(Int32, Object) | Inserts an element into the StringCollection at the specified index. |
![]() ![]() | IList.Remove(Object) | Removes the first occurrence of a specific object from the StringCollection. |
![]() ![]() | IList.IsFixedSize | Gets a value indicating whether the StringCollection object has a fixed size. |
![]() ![]() | IList.IsReadOnly | Gets a value indicating whether the StringCollection object is read-only. |
![]() ![]() | IList.Item(Int32) | Gets or sets the element at the specified index. |
| Name | Description | |
|---|---|---|
![]() | AsParallel() | Overloaded. Enables parallelization of a query.(Defined by ParallelEnumerable.) |
![]() | AsQueryable() | Overloaded. Converts an IEnumerable to an IQueryable.(Defined by Queryable.) |
![]() | Cast(Of TResult)() | Casts the elements of an IEnumerable to the specified type.(Defined by Enumerable.) |
![]() | OfType(Of TResult)() | Filters the elements of an IEnumerable based on a specified type.(Defined by Enumerable.) |
StringCollection accepts null as a valid value and allows duplicate elements.
String comparisons are case-sensitive.
Elements in this collection can be accessed using an integer index. Indexes in this collection are zero-based.
The following code example demonstrates several of the properties and methods of StringCollection.
Imports System Imports System.Collections Imports System.Collections.Specialized Public Class SamplesStringCollection Public Shared Sub Main() ' Create and initializes a new StringCollection. Dim myCol As New StringCollection() ' Add a range of elements from an array to the end of the StringCollection. Dim myArr() As String = {"RED", "orange", "yellow", "RED", "green", "blue", "RED", "indigo", "violet", "RED"} myCol.AddRange(myArr) ' Display the contents of the collection using foreach. This is the preferred method. Console.WriteLine("Displays the elements using foreach:") PrintValues1(myCol) ' Display the contents of the collection using the enumerator. Console.WriteLine("Displays the elements using the IEnumerator:") PrintValues2(myCol) ' Display the contents of the collection using the Count and Item properties. Console.WriteLine("Displays the elements using the Count and Item properties:") PrintValues3(myCol) ' Add one element to the end of the StringCollection and insert another at index 3. myCol.Add("* white") myCol.Insert(3, "* gray") Console.WriteLine("After adding ""* white"" to the end and inserting ""* gray"" at index 3:") PrintValues1(myCol) ' Remove one element from the StringCollection. myCol.Remove("yellow") Console.WriteLine("After removing ""yellow"":") PrintValues1(myCol) ' Remove all occurrences of a value from the StringCollection. Dim i As Integer = myCol.IndexOf("RED") While i > - 1 myCol.RemoveAt(i) i = myCol.IndexOf("RED") End While ' Verify that all occurrences of "RED" are gone. If myCol.Contains("RED") Then Console.WriteLine("*** The collection still contains ""RED"".") End If Console.WriteLine("After removing all occurrences of ""RED"":") PrintValues1(myCol) ' Copy the collection to a new array starting at index 0. Dim myArr2(myCol.Count) As String myCol.CopyTo(myArr2, 0) Console.WriteLine("The new array contains:") For i = 0 To myArr2.Length - 1 Console.WriteLine(" [{0}] {1}", i, myArr2(i)) Next i Console.WriteLine() ' Clears the entire collection. myCol.Clear() Console.WriteLine("After clearing the collection:") PrintValues1(myCol) End Sub 'Main ' Uses the foreach statement which hides the complexity of the enumerator. ' NOTE: The foreach statement is the preferred way of enumerating the contents of a collection. Public Shared Sub PrintValues1(myCol As StringCollection) Dim obj As [Object] For Each obj In myCol Console.WriteLine(" {0}", obj) Next obj Console.WriteLine() End Sub 'PrintValues1 ' Uses the enumerator. ' NOTE: The foreach statement is the preferred way of enumerating the contents of a collection. Public Shared Sub PrintValues2(myCol As StringCollection) Dim myEnumerator As StringEnumerator = myCol.GetEnumerator() While myEnumerator.MoveNext() Console.WriteLine(" {0}", myEnumerator.Current) End While Console.WriteLine() End Sub 'PrintValues2 ' Uses the Count and Item properties. Public Shared Sub PrintValues3(myCol As StringCollection) Dim i As Integer For i = 0 To myCol.Count - 1 Console.WriteLine(" {0}", myCol(i)) Next i Console.WriteLine() End Sub 'PrintValues3 End Class 'SamplesStringCollection 'This code produces the following output. ' 'Displays the elements using foreach: ' RED ' orange ' yellow ' RED ' green ' blue ' RED ' indigo ' violet ' RED ' 'Displays the elements using the IEnumerator: ' RED ' orange ' yellow ' RED ' green ' blue ' RED ' indigo ' violet ' RED ' 'Displays the elements using the Count and Item properties: ' RED ' orange ' yellow ' RED ' green ' blue ' RED ' indigo ' violet ' RED ' 'After adding "* white" to the end and inserting "* gray" at index 3: ' RED ' orange ' yellow ' * gray ' RED ' green ' blue ' RED ' indigo ' violet ' RED ' * white ' 'After removing "yellow": ' RED ' orange ' * gray ' RED ' green ' blue ' RED ' indigo ' violet ' RED ' * white ' 'After removing all occurrences of "RED": ' orange ' * gray ' green ' blue ' indigo ' violet ' * white ' 'The new array contains: ' [0] orange ' [1] * gray ' [2] green ' [3] blue ' [4] indigo ' [5] violet ' [6] * white ' 'After clearing the collection: '
Available since 10
.NET Framework
Available since 1.1
Public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
This implementation does not provide a synchronized (thread safe) wrapper for a StringCollection, but derived classes can create their own synchronized versions of the StringCollection using the SyncRoot property.
Enumerating through a collection is intrinsically not a thread safe procedure. Even when a collection is synchronized, other threads can still modify the collection, which causes the enumerator to throw an exception. To guarantee thread safety during enumeration, you can either lock the collection during the entire enumeration or catch the exceptions resulting from changes made by other threads.





