Add key and value into the StringDictionary in CSharp
Description
The following code shows how to add key and value into the StringDictionary.
Example
using System;//w w w . j ava 2 s . com
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" );
foreach ( DictionaryEntry de in myCol ){
Console.WriteLine(de.Key + "" + de.Value );
}
}
}
The code above generates the following result.