Remove all entries from the StringDictionary in CSharp
Description
The following code shows how to remove all entries from the StringDictionary.
Example
using System;//from w w w .ja va 2 s . co m
using System.Collections;
using System.Collections.Specialized;
public class SamplesStringDictionary
{
public static void Main()
{
StringDictionary myCol = new StringDictionary();
myCol.Add("red", "rojo");
myCol.Add("green", "verde");
myCol.Add("blue", "azul");
Console.WriteLine(myCol.Count);
myCol.Clear();
Console.WriteLine(myCol.Count);
}
}
The code above generates the following result.