本文介绍了什么是克隆/深复制一个.NET泛型Dictionary&LT的最佳途径;串,T&GT ;?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个通用的是什么意思,我想从根本上使..any建议克隆()。

I've got a generic dictionary Dictionary that I would like to essentially make a Clone() of ..any suggestions.

推荐答案

好了,.NET 2.0的答案:

Okay, the .NET 2.0 answers:

如果您不需要克隆值,可以使用构造函数重载来解释这需要现有的IDictionary。 (您可以指定比较器为现有词典的比较器也。)

If you don't need to clone the values, you can use the constructor overload to Dictionary which takes an existing IDictionary. (You can specify the comparer as the existing dictionary's comparer, too.)

如果您的的需要克隆的值,可以使用这样的:

If you do need to clone the values, you can use something like this:

public static Dictionary<TKey, TValue> CloneDictionaryCloningValues<TKey, TValue>
   (Dictionary<TKey, TValue> original) where TValue : ICloneable
{
    Dictionary<TKey, TValue> ret = new Dictionary<TKey, TValue>(original.Count,
                                                            original.Comparer);
    foreach (KeyValuePair<TKey, TValue> entry in original)
    {
        ret.Add(entry.Key, (TValue) entry.Value.Clone());
    }
    return ret;
}

这篇关于什么是克隆/深复制一个.NET泛型Dictionary&LT的最佳途径;串,T&GT ;?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 12:42