Lets say I have an array (or list) of items
A[] = [a,b,c,d,e]
If I want to print them out so each item is separated by a comma (or any othe
Use the string.Join method, very handy.
String.Join(",", my_array)