我正在尝试编写一个独立于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));
}
}
答案 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
是有效值的值类型”的约束。