Convert list of objects to list of string of 1 element 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());