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