I am working with the hashtable in C# and due to some reason I don't get the expected result as the Hashtable sorts all the entries.
I wanna remove this sorting as I already have list in a particular ordered that needs to be printed
The list gets added to hashtable correctly based on the order but when I iterate through the HashTable, it sorts all the entries and produces completely sorted entries. BTW I am using DictionaryEntry for iterating through the hashtable.
Thanks