gpt4 book ai didi

c# - 如何将Dictionary 转换为字符串数组/列表?

转载 作者:太空宇宙 更新时间:2023-11-03 17:56:01 26 4
gpt4 key购买 nike

我想将字典转换为字符串数组(或列表)
字符串数组需要这样返回:“ 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com