Last Updated : 11 Jul, 2025
StringCollection class is a new addition to the .NET Framework class library that represents a collection of strings. StringCollection class is defined in the
System.Collections.Specializednamespace.
StringCollection.Add(String)Method is used to add a string to the end of the StringCollection.
Syntax:public int Add (string value);
Here,
valueis the string to add to the end of the StringCollection. The value can be null.
Return Value:The zero-based index at which the new element is inserted.
Note:If Count is less than the capacity, this method is an O(1) operation. If the capacity needs to be increased to accommodate the new element, this method becomes an O(n) operation, where n is Count. Below programs illustrate the use of
StringCollection.Add(String) Method: Example 1: CSHARP
// C# code to add a string to the
// end of the StringCollection
using System;
using System.Collections;
using System.Collections.Specialized;
class GFG {
// Driver code
public static void Main()
{
// creating a StringCollection named myCol
StringCollection myCol = new StringCollection();
// Adding elements in StringCollection
myCol.Add("A");
myCol.Add("B");
myCol.Add("C");
myCol.Add("D");
myCol.Add("E");
// Displaying objects in myCol
foreach(Object obj in myCol)
{
Console.WriteLine(obj);
}
}
}
Example 2: CSHARP
// C# code to add a string to the
// end of the StringCollection
using System;
using System.Collections;
using System.Collections.Specialized;
class GFG {
// Driver code
public static void Main()
{
// creating a StringCollection named myCol
StringCollection myCol = new StringCollection();
// Adding elements in StringCollection
myCol.Add("2");
myCol.Add("4");
myCol.Add("6");
myCol.Add("8");
myCol.Add("10");
// Displaying objects in myCol
foreach(Object obj in myCol)
{
Console.WriteLine(obj);
}
}
}
Reference:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4