Remove all the strings from the StringCollection in CSharp
Description
The following code shows how to remove all the strings from the StringCollection.
Example
using System;// w w w. j a v a 2 s .c o m
using System.Collections;
using System.Collections.Specialized;
public class SamplesStringCollection {
public static void Main() {
StringCollection myCol = new StringCollection();
String[] myArr = new String[] { "A", "B", "C"};
myCol.AddRange( myArr );
foreach ( Object obj in myCol )
Console.WriteLine(obj );
myCol.Clear();
foreach ( Object obj in myCol )
Console.WriteLine(obj );
}
}
The code above generates the following result.