How can I write a LINQ expression (or anything else) that selects an item from a List and join them together?
Example
IList<string> data = new List<string>();
data.Add("MyData1");
data.Add("MyData2");
string result = // Some LINQ query... I try data.Select(x => x + ",");
//result = "MyData1, MyData2"