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