By Mahesh Chand August 01, 2005
This how do I shows how to convert an array to a comma delimited string.
String.Join method comes handy, when we need to concatenate an array into a string of seperators.
The folloing code snippet shows how to convert an array to a comma seperated string.
String[] array= {"once", "upon", "a", "time"};
String seperator = ", ";
String result = String.Join(seperator, array);