如何制作字典扩展方法?

时间:2012-06-02 15:01:06

标签: c# dictionary extension-methods

我正在尝试编写一个独立于Key / Value数据类型的Dictionary扩展名。我尝试使用object数据类型传递它,假设它适用于任何类型。

我的代码:

 public static class DictionaryExtensionsClass
    {
        public static void AddFormat(this Dictionary< ?? unknow type/*object*/, ??unknow type/*object*/> Dic, ??unknow type/*object*/ Key, string str, params object[] arglist)
        {
            Dic.Add(Key, String.Format(str, arglist));
        }
    }

1 个答案:

答案 0 :(得分:33)

您只需将方法设为通用:

public static void AddFormat<TKey>(this Dictionary<TKey, string> dictionary,
    TKey key,
    string formatString,
    params object[] argList)
{
    dictionary.Add(key, string.Format(formatString, argList));
}

请注意,它仅在类型中是通用的,因为具有的值为string(或可能为object或接口为考虑到你要为它添加一个字符串值,string实现了。

不幸的是,你无法在泛型类型约束中真正表达“只允许string是有效值的值类型”的约束。