欢迎加我的QQ群:193522571,一起来讨论、交流!
摘要: 1,从System.String[]转到ListSystem.String[] str={"str","string","abc"};List listS=new List(str);2, 从List转到System.String[]List listS=new List();listS.Add("str");listS.Add("hello");System.String[] str=listS.ToArray();测试如下:using System;using System.Collecti 阅读全文
posted @ 2014-04-03 12:37 swtool 阅读(882) 评论(0) 推荐(0) 编辑
欢迎加我的QQ群:193522571,一起来讨论、交流!