G
Guest
Hi,
I have a hashtabel m_haschtbl = new Hashtable();
I need to get out my objects from my hashtable in the same order like they
were stored. the order is very important..
I have used IDictionaryEnumerator en = m_hasctbl.GetEnumerator();
while (en.MoveNext())
{
m_object = en.value;
// do some work here
}
is there any way to sort my objects???
thanks
is there
I have a hashtabel m_haschtbl = new Hashtable();
I need to get out my objects from my hashtable in the same order like they
were stored. the order is very important..
I have used IDictionaryEnumerator en = m_hasctbl.GetEnumerator();
while (en.MoveNext())
{
m_object = en.value;
// do some work here
}
is there any way to sort my objects???
thanks
is there