摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace hashTableTest{ class Program { static void Main(string[] args) { Hashtable ht = new Hashtable(); //哈希表元素的添加 ht.Add(1, "星期一"); ... 阅读全文
posted @ 2014-01-20 12:37 LiuHuaTao 阅读(380) 评论(0) 推荐(0)