Tag Archives: generics

Recursively populating a TreeView controls TreeNode collection

Every now and then you come across a scenario where a Treeview control is the best solution for presenting a hierarchical view of data.  How do you populate the tree?  A recursive routine is what you are looking for perhaps … Continue reading

Posted in Web Development Tips | Tagged , , , , | Leave a comment

Sorting Generic.List Items

Great example of sorting a Generic.List collection of objects can be found here. For future reference for myself, here is a class that can be reused in future projects whenever I need to sort a collection of custom objects: /// … Continue reading

Posted in Web Development Tips | Tagged , | 2 Comments