I need to shallow copy a dictionary in c#.

For instance:

Dictionary<int,int> flags = new Dictionary<int,int>();
flags[1] = 2;
flags[2] = 3;
flags[0] = 9001;
Dictionary<int,int> flagsn = flags.MemberwiseClone();

Unfortunately, that returns the error: "error CS1540: Cannot access protected member object.MemberwiseClone()' via a qualifier of typeSystem.Collections.Generic.Dictionary'. The qualifier must be of type `PointFlagger' or derived from it"

Not entirely sure what this means... Is there another way to shallow copy a dictionary/fix my code above?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

To get a shallow copy, just use the constructor of Dictionary<TKey, TValue> as it takes an IEnumerable<KeyValuePair<TKey, TValue>>. It will add this collection into the new instance.

Dictionary<int, int> flagsn = new Dictionary<int, int>(flags);
link|improve this answer
Duuurr! I probably should have looked closer at the documentation... Thankyou very much, Jared! I will accept your answer when possible. – Georges Oates Larsen Jan 14 at 0:47
Agh sorry for delay in answer acceptance, not sure what happened there – Georges Oates Larsen Jan 23 at 2:01
@Georges no problem. Just glad to help – JaredPar Jan 23 at 6:32
feedback

This is a generic way I found where you don't have to explicitly write any type, which I prefer for maintainability reasons:

var ShallowCopy = OriginalDictionary.ToDictionary(kvp => kvp.Key, kvp => kvp.Value);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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