C# ListDictionary Clear
Description
ListDictionary Clear
removes all entries from the ListDictionary.
Syntax
ListDictionary.Clear
has the following syntax.
public void Clear()
Returns
ListDictionary.Clear
method returns
Example
using System;/* w w w.ja va 2 s. c o m*/
using System.Collections;
using System.Collections.Specialized;
public class SamplesListDictionary {
public static void Main() {
ListDictionary myCol = new ListDictionary();
myCol.Add( "F", "1.49" );
myCol.Add( "A", "1.29" );
myCol.Add( "B", "1.49" );
myCol.Add( "C", "1.29" );
myCol.Add( "D", "0.89" );
myCol.Add( "E", "0.99" );
myCol.Clear();
}
}