最有效的 Dictionary<K,V>.ToString() 格式?

Most efficient Dictionarylt;K,Vgt;.ToString() with formatting?(最有效的 Dictionarylt;K,Vgt;.ToString() 格式?)
本文介绍了最有效的 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&lt;K,V&gt;.ToString() 格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)