This Hashlist-Class stores items in an key-value based style. You are able to access this items by key or index. And you can sort the list either by Key or by Value. Maybe this code is useful for you. It is fully undocumented (yes, i am lazy....) Simply put this code in a new Class-library-Project and compile.
File List:
AssemblyInfo.vb
1Kb
Hashlist.sln
1Kb
Hashlist.suo
8Kb
Hashlist.vb
4Kb
Hashlist.vbproj
3Kb
Hashlist.vbproj.user
2Kb
Hashlist.xml
243b
Similar code
Sorting with linear lists
(Popularity: ) : This piece of code is a doubly linked multilist...at least it's how I call it in french :P It sorts item by alphabetical order. It lets you add and remove objects(in this case Person). It could be used to do ... How to sort a 2 dimensional array
(Popularity: ) : One of the problems I faced while I developing a information retrieval system for Arabic language using the neural network is how to sort the 2 dimensional array? After a deep thinking and useless searching I decide to go and ... XML Dynamic Sort
(Popularity: ) : This code shows how to read an XML database, and sort its contents dynamically (like in explorer). This code uses the ASP:XML control and also demonstrates ViewState variables. Sort ListView
(Popularity: ) : I try many time to Sort my data in the listView Control. But The Listview Only sort the First Column. This is for sorting purpose for all column. It sorts Numeric as well as Alphabet. Try it.. Basic Sorting Algorithm Analysis
(Popularity: ) : This source code is about the basic sorting algorithm implemented in C#. The algorithms included are Bubble Sort, Insertion Sort, Selection Sort. User can trace how's the sorting algorithm works. Besides running each sorting individually, user can also run the ...