Really?
Hashtable MyHashTable = new Hashtable();
MyHashTable.Add(1, "word");
MyHashTable.Add("word", 12);
// to access 12
int MyInt = (int)MyHashTable["word"];
3
solved how build a hash table stored object in C#?
Really?
Hashtable MyHashTable = new Hashtable();
MyHashTable.Add(1, "word");
MyHashTable.Add("word", 12);
// to access 12
int MyInt = (int)MyHashTable["word"];
3
solved how build a hash table stored object in C#?