how to make string list to single sting output code example
Example: c# build string out of list of strings
string.Join(", ", stringCollection); // "Value1, Value2, Value3
string.Join(", ", stringCollection); // "Value1, Value2, Value3