c# covert collection of strings to one string code example
Example 1: c# convert list to string
string combindedString = string.Join( ",", myList.ToArray() );
Example 2: c# build string out of list of strings
string.Join(", ", stringCollection); // "Value1, Value2, Value3