I have a property that returns a HashTable. I would like to sort it without refactoring my property. Please note: I do not want to return another type.
HashTable
There is no point in sorting a hash table because you already have almost constant lookup time. Or at worst O(B) where B is the bucket size.