In many places in our code we have collections of objects, from which we need to create a comma-separated list. The type of collection varies: it may be a DataTable from whi
string.Join(", ", Array.ConvertAll(somelist.ToArray(), i => i.ToString()))