我有一个带有int键的字典,以及int列表作为值。如何按价值复制?
我做了以下操作,但它通过引用复制了List部分:
Dictionary<int, List<int>> d2 = new Dictionary<int, List<int>>(d1);
答案 0 :(得分:5)
您可以使用ToDictionary
复制字典,ToList
复制列表:
var dNew = d1.ToDictionary(x => x.Key, x => x.Value.ToList());
答案 1 :(得分:4)
您可以使用linq:
var d2 = d1.ToDictionary(x => x.Key, y => new List<int>(y.Value));