Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

C# | Get an IDictionaryEnumerator object in OrderedDictionary

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

OrderedDictionary.GetEnumerator method returns an IDictionaryEnumerator object that iterates through the OrderedDictionary collection.

Syntax:

public virtual System.Collections.IDictionaryEnumerator GetEnumerator ();

Return Value: An IDictionaryEnumerator object for the OrderedDictionary collection.

Below given are some examples to understand the implementation in a better way:

Example 1:




// C# code to get an IDictionaryEnumerator
// object that iterates through the
// OrderedDictionary collection.
using System;
using System.Collections;
using System.Collections.Specialized;
  
class GFG {
  
    // Driver method
    public static void Main()
    {
  
        // Creating a orderedDictionary named myDict
        OrderedDictionary myDict = new OrderedDictionary();
  
        // Adding key and value in myDict
        myDict.Add("key1", "value1");
        myDict.Add("key2", "value2");
        myDict.Add("key3", "value3");
        myDict.Add("key4", "value4");
        myDict.Add("key5", "value5");
  
        // To Get an IDictionaryEnumerator object
        // that iterates through the OrderedDictionary
        // collection.
        IDictionaryEnumerator myEnumerator = myDict.GetEnumerator();
  
        while (myEnumerator.MoveNext()) {
            Console.WriteLine(myEnumerator.Key + " --> " 
                                  + myEnumerator.Value);
        }
    }
}

Output:

key1 --> value1
key2 --> value2
key3 --> value3
key4 --> value4
key5 --> value5

Example 2:




// C# code to get an IDictionaryEnumerator
// object that iterates through the
// OrderedDictionary collection.
using System;
using System.Collections;
using System.Collections.Specialized;
  
class GFG {
  
    // Driver method
    public static void Main()
    {
  
        // Creating a orderedDictionary named myDict
        OrderedDictionary myDict = new OrderedDictionary();
  
        // Adding key and value in myDict
        myDict.Add("A", "Apple");
        myDict.Add("B", "Banana");
        myDict.Add("C", "Cat");
        myDict.Add("D", "Dog");
  
        // To Get an IDictionaryEnumerator object
        // that iterates through the OrderedDictionary
        // collection.
        IDictionaryEnumerator myEnumerator = myDict.GetEnumerator();
  
        while (myEnumerator.MoveNext()) {
            Console.WriteLine(myEnumerator.Key + " --> " 
                                 + myEnumerator.Value);
        }
    }
}

Output:

A --> Apple
B --> Banana
C --> Cat
D --> Dog

Note:

  • Enumerators can be used to read the data in the collection, but they cannot be used to modify the underlying collection.
  • Initially, the enumerator is positioned before the first element in the collection.
  • This method is an O(1) operation.
  • An enumerator remains valid as long as the collection remains unchanged. If changes are made to the collection, such as adding, modifying, or deleting elements, the enumerator is irrecoverably invalidated and its behavior is undefined.

Reference:


My Personal Notes arrow_drop_up
Last Updated : 01 Feb, 2019
Like Article
Save Article
Similar Reads