What is the best .NET library (commercial or open source) that implements a non-binary tree and its associated operations? The requirements are to dynamically insert and delete nodes, copy/paste nodes, find information buried in nodes, copy/paste of folders and their children from one area of the tree to another. The tree is at the business logic layer. Presentation layer is WPF. Implementation language is C#.
|
1
|
|||||||
|
|
|
I would use:
Building and rearranging the tree is pretty straightforward:
|
||
|
|
|
|
I would say LINQ to XML without a doubt.
|
|||
|
|
|
You might want to look at QuickGraph over at codeplex. |
||
|
|
|
|
Trees are so easy to write, and specific requirements relatively diverse, that I'm not sure that a "tree library" would be very useful. Why don't you write your own? |
||
|
|
