c# build string out of list of strings

C#
string.Join(", ", stringCollection); // "Value1, Value2, Value3
Source

Also in C#: