摘要: C# 泛型Dictionary (Hashtable)using System;using System.Collections.Generic;public class Example{ public static void Main() { //创建泛型哈希表,然后加入元素 Dictionary<string, string> oscar = new Dictionary<string, string>(); oscar.Add("哈莉•贝瑞", "《死囚之舞》"); oscar.Add("朱迪•丹奇", 阅读全文
posted @ 2012-07-18 09:59 小锋神 阅读(2888) 评论(0) 推荐(0) 编辑