join list of strings with comma c# code example
Example: c# list to string comma separated
IList<string> strings = new List<string>{"1","2","testing"};
string joined = string.Join(",", strings);
IList<string> strings = new List<string>{"1","2","testing"};
string joined = string.Join(",", strings);