是否有任何简单的 LINQ 表达式可以将我的整个List<string>集合项连接到一个string带有分隔符的单个项?
List<string>
string
如果集合是自定义对象而不是string怎么办?想象一下我需要连接object.Name.
object.Name
尽管此答案确实产生了预期的结果,但与此处的其他答案相比,它的性能较差。决定使用它时要非常小心
通过使用 LINQ,这应该可以工作;
string delimiter = ","; List<string> items = new List<string>() { "foo", "boo", "john", "doe" }; Console.WriteLine(items.Aggregate((i, j) => i + delimiter + j));
班级说明:
public class Foo { public string Boo { get; set; } }
用法:
class Program { static void Main(string[] args) { string delimiter = ","; List<Foo> items = new List<Foo>() { new Foo { Boo = "ABC" }, new Foo { Boo = "DEF" }, new Foo { Boo = "GHI" }, new Foo { Boo = "JKL" } }; Console.WriteLine(items.Aggregate((i, j) => new Foo{Boo = (i.Boo + delimiter + j.Boo)}).Boo); Console.ReadKey(); } }
这是我最好的:)
items.Select(i => i.Boo).Aggregate((i, j) => i + delimiter + j)