c# array to string with delimiter code example
Example 1: C#: convert array of integers to comma separated string
var result = string.Join(",", arr);
Example 2: how to join array indexes with comma in c#
List<string> testList= new List<string>();
testList.Add("Apple"); // Add string 1
testList.Add("Banana"); // 2
testList.Add("Mango"); // 3
testList.Add("Blue Berry"); // 4
testList.Add("Water Melon"); // 5
string JoinDataString = string.Join(",", testList.ToArray());