join list of strings to one string c# code example
Example 1: c# build string out of list of strings
string.Join(", ", stringCollection); // "Value1, Value2, Value3
Example 2: how to convert list of string to single string in c#
string Something = string.Join(",", MyList);
List<string> names = new List<string>() { "John", "Anna", "Monica" };
var result = String.Join(", ", names.ToArray());