Hi,
I have populated a hashtable called CacheHashTableForwards.
This is how the hashtable gets populated:

CacheHashTablesForwards.Add(IndexName, code)
...

Now I would like to sort this data which is inside the Hashtable.

Not sure if this is a good approach but I use an ArrayList to do this as follows:

CacheHashTablesForwardsArraySorted = new ArrayList(CacheHashTablesForwards.Keys)

As you can see, The sorted array does not contains the other column, i.e. code
How can I properly sort using the arraylist.
Thanks