追加“列表”项目到 StringBuilder

发布于 2024-10-04 00:37:44 字数 430 浏览 6 评论 0原文

我尝试使用 LINQ 将 List 中的项目附加到 StringBuilder

items.Select(i => sb.Append(i + ","));

我发现了类似的问题 here 这解释了为什么上面的方法不起作用,但我找不到 Each< ForEach 的 /code> 或 List 上我可以使用的类似内容。

有没有一种巧妙的方法可以在一行中做到这一点?

I tried to append the items in a List<string> to a StringBuilder with LINQ:

items.Select(i => sb.Append(i + ","));

I found a similar question here which explains why the above doesn't work, but I couldn't find an Each of ForEach or anything similar on List which I could use instead.

Is there a neat way of doing this in a one-liner?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

无法回应 2024-10-11 00:37:44
items.ForEach(item => sb.Append(item + ","));
items.ForEach(item => sb.Append(item + ","));
七婞 2024-10-11 00:37:44

您可以使用简单的 foreach 循环。这样,您就可以使用修改 StringBuilder 的语句,而不是使用具有副作用的表达式。

也许使用 String.Join(",", items) 可以更好地解决您的问题。

You could use a simple foreach loop. That way you have statements which modify the StringBuilder, instead of using an expression with side-effects.

And perhaps your problem is better solved with String.Join(",", items).

你另情深 2024-10-11 00:37:44

试试这个:

 String [] items={"Jan","Feb","Mar"};
 StringBuilder sb=new StringBuilder();
 foreach(var entity in items)
 {
   sb.Append(entity + Environment.NewLine);
 }
 Textbox1.Text=sb.tostring();

输出:

一月

二月

三月

Try this:

 String [] items={"Jan","Feb","Mar"};
 StringBuilder sb=new StringBuilder();
 foreach(var entity in items)
 {
   sb.Append(entity + Environment.NewLine);
 }
 Textbox1.Text=sb.tostring();

Output:

Jan

Feb

Mar

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