c# convert list to string

C#
string combindedString = string.Join( ",", myList.ToArray() );
Source

Also in C#: