But how could you live and have no story to tell!
访问统计 original graphics

摘要: 1、ArrarList 转换为 string[] : ArrayList list = new ArrayList(); list.Add("aaa"); list.Add("bbb"); //转换成数组 string[] arrString = (string[])list.ToArray(typeof( string)) ; 2、string[] 转换为 ArrarList : ArrayList list = new ArrayList(new string[] { "aaa", "bbb" }); 3、Ar 阅读全文
posted @ 2011-10-20 11:07 nextsoft 阅读(2493) 评论(0) 推荐(0) 编辑