我有以下字符串列表
List<string> myList=new List<string>();
myList.Add("A");
myList.Add("B");
myList.Add("C");
myList.Add("D");
myList.Add("E");
myList.Add("F");
myList.Add("G");
myList.Add("H");
string Res=""
foreach(String str in myList)
{
Res+=","+str;
}
有没有比这更好的方法来加入我的列表值?
谢谢你们