如何在C#中构建哈希表存储对象?

时间:2011-11-25 04:48:47

标签: c# hashtable

我想在C#中构建哈希表

示例:

1 ---> “中词” ----> 12,

数字-1-引用“Word”和字符串“Word”引用数字-12 -

2 个答案:

答案 0 :(得分:0)

 Hashtable hash = new Hashtable();
 hash.Add(1, "Word");
 hash.Add("Word", "12");
 int value = (int)hash[hash[1]];
 System.Console.WriteLine(value);

答案 1 :(得分:0)

真的?

    Hashtable MyHashTable = new Hashtable();
    MyHashTable.Add(1, "word");
    MyHashTable.Add("word", 12);

    // to access 12
    int MyInt = (int)MyHashTable["word"];