📜  如何在 C# 代码示例中使用逗号连接数组索引

📅  最后修改于: 2022-03-11 14:48:38.745000             🧑  作者: Mango

代码示例1
List testList= new List();
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());