摘要:
有些是为了优化以前的复杂代码,比如泛型集合。有些是为了实现当前代码不能实现的新增的技术。1.0--2.0 大量API升级,泛型的支持2.0--3.0 4个框架:wpf,wcf,工作流(wf),Windows CardSpace3.0--3.5 LinQ asp.net的ajax 阅读全文
摘要:
string[] array = new string[]{" 1", "2"," 3", "4"," 5" }; ArrayList list = new ArrayList();一:使用for循环,将array数组中的数据逐步加入到ArrayList的对象中;//1、for循环 for (int i = 0; i < array.Length;i++) { list.Add(array[i]); }二:使用ArrayList 的CopyTo()方法://2、copyTo() list. 阅读全文