Hashtable 类
摘要:
Hashtable 类表示键/值对的集合,这些键/值对根据键的哈希代码进行组织。命名空间:System.Collections程序集:mscorlib(在 mscorlib.dll 中)using System;using System.Collections;class Example{ public static void Main() { // Create a new hash table. // Hashtable openWith = new Hashtable(); // Add some ele... 阅读全文
posted @ 2013-04-18 09:22 独孤求爱 阅读(175) 评论(0) 推荐(0) 编辑