StringCollection Constructor |
Initializes a new instance of the StringCollection class. |
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 |
Gets or sets the element at the specified index.
In C#, this property is the indexer for the StringCollection class. |
SyncRoot |
Gets an object that can be used to synchronize access to the StringCollection. |
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 (inherited from Object) |
Overloaded. Determines whether two Object instances are equal. |
GetEnumerator |
Returns a StringEnumerator that can iterate through the StringCollection. |
GetHashCode (inherited from Object) |
Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table. |
GetType (inherited from Object) |
Gets the Type of the current instance. |
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. |
Remove |
Removes the first occurrence of a specific string from the StringCollection. |
RemoveAt |
Removes the string at the specified index of the StringCollection. |
ToString (inherited from Object) |
Returns a String that represents the current Object. |
Finalize (inherited from Object) |
Overridden. Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
In C# and C++, finalizers are expressed using destructor syntax. |
MemberwiseClone (inherited from Object) |
Creates a shallow copy of the current Object. |
| 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 can iterate 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. |
StringCollection Class | System.Collections.Specialized Namespace