convert array to string comma separated c# code example
Example 1: c# list to string comma separated
IList<string> strings = new List<string>{"1","2","testing"};
string joined = string.Join(",", strings);
Example 2: C#: convert array of integers to comma separated string
var result = string.Join(",", arr);