标签:tostring stringbu 集合 var str .net count builder add
list<string> isShow=new List<string>() ///泛型集合
isShow.Add(‘1‘)
isShow.Add(‘2‘)
isShow.Add(‘3‘)
var id_isShow = new StringBuilder(); ///得到的值1,2,3
for (int i = 0; i < isShow.Count; i++)
{
if (i == isShow.Count - 1)
{
id_isShow.Append(isShow[i].ToString());
}
else
{
id_isShow.Append(isShow[i].ToString()+",");
}
}
.net中将 list<> 转换成string类型(1,2,3)
标签:tostring stringbu 集合 var str .net count builder add
原文地址:https://www.cnblogs.com/yjm8023/p/9323190.html