I been experimenting with the different methods for representing a hierarchical structures in memory that would allow for simple and efficient transversal both up and down to discover ancestor and descendant relationships. Does anyone have any suggestions or examples of the options that I have? Is there a collection type in .Net 3.5 that would help here?
|
|
|
|
|
|
|
|
||
|
|
|
I use LINQ to traverse hierarchical structures that I loaded from XML web services but I bet LINQ would generalize nicely to walk around your tree collection. -Mike PS. I mention this because LINQ is just plain fun too. |
||
|
|
|
|
I'm afraid there is nothing there by default. Make your own. |
||
|
|
|
|
|
||
|
|
|
|
How about making your own node that looks something like:
Then apply Node recursively, as needed |
|||
|
