I got a tree structure in C#.
Each node in the tree contains a reference to a parent and a collection of children. The process of creating a child node is likewise -
- A parent node creates a child item
- The child runs all of its constructor logic
- After the child has exited its constructor, its instance is added into the parent's children collection, and the child's Parent property is updated accordingly.
This has worked great for me just up until now. I encountered a situation where some objects needed a reference to their parent already in their constructor, even though they did not have it yet, and will receive it only after they exit the constructor and be added to their parent's collection. (As in stage 3)
I thought of a possible solutions which I'm not sure of -
Each parent node should propagate itself to its child upon creation. The problem with this case is a bit more clumsy constructors but also the Parent property would be set twice. Once in step 2, and one more time in step 3.
I figured that this must be a common problem, therefore someone must have found out a better solution.
Just for general knowledge - this tree structure is ViewModel based for WPF's TreeView.
Comments will be much appreciated.
Thanks!