Hashtable - Retrieving the two values
Lets say i have a hashtable as follows
Hashtable Dictionary =new Hashtable();
for(int code=0; code<256; code++)
{
Integer value =new Integer(code);
Integer key =new Integer(code);
Dictionary.put(key, value);
}
How can I point to an index of the hashtable and either retrieve key or value as in...
Dictionary.get(i).value or Dictionary.get(i).key

