c#object to list of 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;
var combined = string.Join(", ", myObjects);
IList collection = (IList)myObject;