Q:

C#: convert array of integers to comma separated string

var result = string.Join(",", arr);
1
string fruit = "Apple,Banana,Orange,Strawberry";
string[] split = fruit.Split(',');
-1

New to Communities?

Join the community