I have a requirement where I already have an existing SortedDictionary<string, int>. Now I am creating a different SortedDictionary and like to add this in the first one . How to do it?

link|improve this question

44% accept rate
Is the second also a SortedDictionary<string, int> or is it a SortedDictionary<something, SortedDictionary<string, int>>? – Anders Abel Apr 4 '10 at 18:51
feedback

2 Answers

Just pass it to the constructor:

var copy = new SortedDictionary<string, int>(original);
link|improve this answer
feedback

SortedDictionary<TKey,TValue> doesn't provide an AddRange(IEnumerable<KeyValuePair<TKey, TValue>>) function, so you'll have to do it the hard way, one item at a time.

SortedDictionary<string, int> first, second;
first = FillFirst();
second = FillSecond();

foreach (KeyValuePair<string, int> kvp in second) {
  first.Add(kvp.Key, kvp.Value);
}
link|improve this answer
reason for downvote? – Ben Voigt Apr 14 '10 at 5:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.