使用 LINQ 如何连接集合中 itemsm 的字符串属性

发布于 2024-10-31 05:43:09 字数 419 浏览 1 评论 0原文

我有一个集合中的对象列表。每个对象都有一个名为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小…红帽 2024-11-07 05:43:09

您可以编写

return String.Join(", ", collection.Select(o => o.Issue));

在.Net 3.5中,您需要添加.ToArray()

You can write

return String.Join(", ", collection.Select(o => o.Issue));

In .Net 3.5, you'll need to add .ToArray().

酷到爆炸 2024-11-07 05:43:09

您可以使用 morelinq 中的 ToDelimitedString。

You could use ToDelimitedString from morelinq.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文