摘要: 1,从System.String[]转到List<System.String>System.String[] str={"str","string","abc"};List<System.String> listS=new List<System.String>(str);2, 从List<System.String>转到System.String[]List<System.String> listS=new List<System.String>();listS 阅读全文
posted @ 2013-05-14 17:14 蓝晓 阅读(575) 评论(0) 推荐(0) 编辑
摘要: List<int> 转 string [] http://blog.sina.com.cn/s/blog_54b14bb80100xvl1.html转载▼今天有同事问这个问题,就是说,存在一个list<int>: 1,2,3,4,5,6,7希望可以转换成字符串:“1,2,3,4,5,6,7”using System;using System.Collections.Generic;using System.Linq;using System.Text;using test2;namespace test{class Program{static void Main(st 阅读全文
posted @ 2013-05-14 16:59 蓝晓 阅读(757) 评论(0) 推荐(0) 编辑