How can I efficiently merge multiple orderedDictionary
s?
In C#, I have checked online, but I could only see implementations for merging NamevaluePairs.
I am trying to join the below orderedDictionaries:
OrderedDictionary ticketToPickerMapForVerifiedTab = new OrderedDictionary();
OrderedDictionary ticketToPickerMapForHVTab = new OrderedDictionary();
OrderedDictionary ticketToPickerMapForKPTab = new OrderedDictionary();
The keys in those dictionaries are unique
I need the resultant collection to still be an OrderedDictionary object.
Please note that my question is different from the one asked here: Merging dictionaries in C#
As that one demonstrated a case for Keyvaluepair<TKey,TValue>, while mine refers to using OrderedDictionary, because of the special functionality of OrderedDictionary consumed elsewhere in my code.