本文介绍了最有效的 Dictionary<K,V>.ToString() 格式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
将字典转换为格式化字符串的最有效方法是什么.
What's the most efficient way to convert a Dictionary to a formatted string.
例如:
我的方法:
public string DictToString(Dictionary<string, string> items, string format){
format = String.IsNullOrEmpty(format) ? "{0}='{1}' " : format;
string itemString = "";
foreach(var item in items){
itemString = itemString + String.Format(format,item.Key,item.Value);
}
return itemString;
}
有没有更好/更简洁/更高效的方式?
Is there a better/more concise/more efficient way?
注意:字典最多有 10 个项目,如果存在另一个类似的键值对"对象类型,我不承诺使用它
另外,既然我无论如何都要返回字符串,那么通用版本会是什么样子?
Also, since I'm returning strings anyhow, what would a generic version look like?
推荐答案
我只是重写了你的版本,使其更加通用并使用 StringBuilder
:
I just rewrote your version to be a bit more generic and use StringBuilder
:
public string DictToString<T, V>(IEnumerable<KeyValuePair<T, V>> items, string format)
{
format = String.IsNullOrEmpty(format) ? "{0}='{1}' " : format;
StringBuilder itemString = new StringBuilder();
foreach(var item in items)
itemString.AppendFormat(format, item.Key, item.Value);
return itemString.ToString();
}
这篇关于最有效的 Dictionary<K,V>.ToString() 格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!