B
Boni
Dear all,
following code iterates thru the hash table.
Dim _Enumerator As IDictionaryEnumerator = _myhashtable.GetEnumerator
While _Enumerator.MoveNext()
....
End While
But I can't find a way to iterate in reverse direction. Something like...
Dim _Enumerator As IDictionaryEnumerator = _myhashtable.GetReverseEnumerator
While _Enumerator.MovePrevious()
....
End While
It is possible?
Thanks
following code iterates thru the hash table.
Dim _Enumerator As IDictionaryEnumerator = _myhashtable.GetEnumerator
While _Enumerator.MoveNext()
....
End While
But I can't find a way to iterate in reverse direction. Something like...
Dim _Enumerator As IDictionaryEnumerator = _myhashtable.GetReverseEnumerator
While _Enumerator.MovePrevious()
....
End While
It is possible?
Thanks