TODO:
Have you ever wanted to convert a List<string> to a comma delimited string?
SOLUTION:
List<string> list = new List<string>();
list.Add("blah");
list.Add("blah1");
list.Add("blah2");
list.Add("blah3");
string result = String.Join(",", list.ToArray());
NOTES:
There are no notes on this topic.