Answers for "take a list of strings and make 1 string using linqq"

C#
1

c# list string return concatenate

string delimiter = ",";
List<string> items = new List<string>() { "foo", "boo", "john", "doe" };
Console.WriteLine(items.Aggregate((i, j) => i + delimiter + j));
Posted by: Guest on May-19-2020

Code answers related to "take a list of strings and make 1 string using linqq"

C# Answers by Framework

Browse Popular Code Answers by Language