使用 LINQ 如何连接集合中 itemsm 的字符串属性
我有一个集合中的对象列表。每个对象都有一个名为 Issue 的字符串属性。我想将集合中所有项目的问题连接起来并将它们放入一个字符串中。使用 LINQ 执行此操作的最简洁方法是什么?
这是手动方式:
string issueList = "";
foreach (var item in collection)
{
if (!String.IsNullOrEmpty(item.Issue)
{
issueList = issueList + item.Issue + ", ";
}
}
//Remove the last comma
issueList = issueList.Remove(issueList.Length - 2);
return issueList;
i have a list of objects in a collection. Each object has a string property called Issue. I want to concatenate the issue from all of the items in the collection and put them into a single string. what is the cleanest way of doing this using LINQ.
here is manual way:
string issueList = "";
foreach (var item in collection)
{
if (!String.IsNullOrEmpty(item.Issue)
{
issueList = issueList + item.Issue + ", ";
}
}
//Remove the last comma
issueList = issueList.Remove(issueList.Length - 2);
return issueList;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以编写
在.Net 3.5中,您需要添加
.ToArray()
。You can write
In .Net 3.5, you'll need to add
.ToArray()
.您可以使用 morelinq 中的 ToDelimitedString。
You could use ToDelimitedString from morelinq.