gpt4 book ai didi

c# - 使用 linq 收集到字符串

转载 作者:IT王子 更新时间:2023-10-29 04:36:10 25 4
gpt4 key购买 nike

我有课

public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
}

List<Person> PersonList = new List<Perso>();
PersonList.Add(new Person() { FirstName = "aa", LastName = "AA" } );
PersonList.Add(new Person() { FirstName = "bb", LastName = "BB" } );

我想使用 Linq 获取一个带有逗号分隔符的字符串,结果如下所示:AA,BB

谢谢,

最佳答案

如果您使用的是 .NET 4:

string lastNames = string.Join(",", PersonList.Select(x => x.LastName));

如果您使用的是 .NET 3.5:

string lastNames = string.Join(",", PersonList.Select(x => x.LastName)
.ToArray());

(基本上 .NET 4 向 string.Join 添加了一些额外的重载。)

关于c# - 使用 linq 收集到字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3821206/

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