How can I write a Linq expression (or anything else) that select item from a List and join them together ?
Example
IList data = new List<
As Anthony Pegram wrote String.Join(delimiter, IEnumerable) is the best solution in .NET 4!
String.Join(delimiter, IEnumerable)