我想将字典转换为字符串数组(或列表)
字符串数组需要这样返回:“ ID,PTS”其中int是ID,而long是PTS。
请帮忙!
谢谢,
〜Nikku。
最佳答案
var strings = dict.Select(item => string.Format("{0}, {1}", item.Key, item.Value));
请注意,这将返回一个枚举数。不管您要使用
string[]
还是List<string>
形式的结果,都应分别使用.ToArray()
或.ToList()
。关于c# - 如何将Dictionary <int,long>转换为字符串数组/列表?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11271029/