Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

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());
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #join #array #indexes #comma
ADD COMMENT
Topic
Name
9+7 =