convert list property to string c# code example
Example 1: list object into string c#
var combined = string.Join(", ", myObjects);
Example 2: list of objects to string c#
var mylist = myObjectList.ConvertAll(x => x.ToString());
var combined = string.Join(", ", myObjects);
var mylist = myObjectList.ConvertAll(x => x.ToString());