码迷,mamicode.com
首页 > Web开发 > 详细

.net中将 list<> 转换成string类型(1,2,3)

时间:2018-07-17 16:29:19      阅读:249      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!