Vb.net – Convert List of String to a String separated by a delimiter

stringvb.net

Whats the best way to convert a list(of string) to a string with the values seperated by a comma (,)

Best Solution

String.Join(",", myListOfStrings.ToArray())