gpt4 book ai didi

c# - 对象列表,获取带有分隔符的属性

转载 作者:太空狗 更新时间:2023-10-30 00:11:31 25 4
gpt4 key购买 nike

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

我有一个列表:

List<Person> list = new List<Person>();

我想获取列表中所有条目的 Id 值,带逗号分隔符,如下所示:id1, id2, id3

最佳答案

使用string.Join加入值(value)和Enumerable.Select到选定的期望值:

string allIds = string.Join(", ", list.Select(i => i.Id.ToString()));

关于c# - 对象列表,获取带有分隔符的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11526484/

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