list of objects to string c# code example
Example 1: c# list to string
List<string> names = new List<string>() { "John", "Anna", "Monica" };
string result = string.Join(",", names.ToArray());
Example 2: list object into string c#
var combined = string.Join(", ", myObjects);
Example 3: list of objects to string c#
var mylist = myObjectList.ConvertAll(x => x.ToString());