unsort Hashtable
Posted
by user222820
on Stack Overflow
See other posts from Stack Overflow
or by user222820
Published on 2010-03-16T10:41:43Z
Indexed on
2010/03/16
10:46 UTC
Read the original article
Hit count: 311
hi there i am writing a program in C# i have a code like this
Hashtable ht = new Hashtable();
ht.Add("1", "One");
ht.Add("2", "Two");
ht.Add("3", "Three");
ht.Add("4", "Four");
but Compiler sort it i wanna know how can i prevent sorting hashtable please help me
© Stack Overflow or respective owner