list object to list string c# code example
Example 1: list of objects to string c#
var mylist = myObjectList.ConvertAll(x => x.ToString());
Example 2: c# object list to joined string
using System.Linq
string.Join(",", people.Select(x => x.surname))