2009年4月21日
摘要: using System;using System.Collections.Generic;using System.Text;using System.Collections;using System.Windows.Forms; namespace @string{ class Program//这段是用属性的 { static void Main(string[] ... 阅读全文
posted @ 2009-04-21 20:24 Jerryzhang 阅读(5860) 评论(0) 推荐(0) 编辑
摘要: 1、什么是ArrayListArrayList就是传说中的动态数组,用MSDN中的说法,就是Array的复杂版本,它提供了如下一些好处:动态的增加和减少元素;实现了ICollection和IList接口;灵活的设置数组的大小。 2、如何使用ArrayList最简单的例子: ArrayList List = new ArrayList();for( int i=0;i<10;i++ ) //给数组... 阅读全文
posted @ 2009-04-21 18:46 Jerryzhang 阅读(375) 评论(0) 推荐(0) 编辑
摘要: namespace @string{ class Program { static void Main(string[] args) { Hashtable HS = new Hashtable(); HS.Add(1, "apple");//add 方法是想添加键值对 HS.Add(2, ... 阅读全文
posted @ 2009-04-21 16:34 Jerryzhang 阅读(399) 评论(0) 推荐(0) 编辑