Add key and value into OrderedDictionary in CSharp
Description
The following code shows how to add key and value into OrderedDictionary.
Example
//from w w w . j a va 2 s .c o m
using System;
using System.Collections;
using System.Collections.Specialized;
public class SamplesStringCollection {
public static void Main() {
OrderedDictionary myOrderedDictionary = new OrderedDictionary();
myOrderedDictionary.Add("testKey1", "testValue1");
myOrderedDictionary.Add("testKey2", "testValue2");
myOrderedDictionary.Add("keyToDelete", "valueToDelete");
myOrderedDictionary.Add("testKey3", "testValue3");
Console.WriteLine( myOrderedDictionary.Count);
}
}
The code above generates the following result.