Concat all strings inside a List using LINQ

string result = String.Join(delimiter, list);

is sufficient.

Leave a Comment