gpt4 book ai didi

c# - 如何命名字符串组中的项目?

转载 作者:行者123 更新时间:2023-11-30 20:08:44 25 4
gpt4 key购买 nike

string[] strGroup=returnStr.split(',');

strGroup的每一项,如果有每一项的含义列表,如何命名?因此,当我需要使用特定项目时,我只使用 strGroup["LastName"] 而不是 strGroup[23]

最佳答案

类似这样的事情(疯狂的 LINQ 谈话,我知道)

string returnStr = "Claus,Junker,Jørgensen";

string[] keys = new string[]
{
"FirstName",
"MiddleName",
"LastName"
};

Dictionary<string, string> groups = returnStr.Split(',')
.Select((x, i) => Tuple.Create(keys[i], x))
.ToDictionary(k => k.Item1, v => v.Item2);

// Alternative version

Dictionary<string, string> groups = returnStr.Split(',')
.Zip(keys, (k, v) => new KeyValuePair<string, string>(k, v))
.ToDictionary(k => k.Key, v => v.Value);

关于c# - 如何命名字符串组中的项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6821711/

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