list of string into string c# code example
Example 1: c# build string out of list of strings
string.Join(", ", stringCollection); // "Value1, Value2, Value3
Example 2: c# list to string
using System.Linq;
string str = list.Aggregate((x, y) => x + ',' + y);