c# list strings to string code example
Example 1: c# build string out of list of strings
string.Join(", ", stringCollection); // "Value1, Value2, Value3
Example 2: convert list of strings to string
string Something = string.Join(",", MyList);
string.Join(", ", stringCollection); // "Value1, Value2, Value3
string Something = string.Join(",", MyList);