I have a tree that looks something like this:
+Parent
-Child
+Parent
-Child
+Parent
-Child
+Parent
+Parent
+Parent
+Parent
-Child
-Child... etc.
I need to be able to identify all the nodes that are parents, regardless of the level. Basically I need an exampleTree.Nodes.GetAllParents() method.
exampleTree.Nodes.GetParents();and I haven't really 'tried' anything, I'm researching a way, but so far I've not stumbled upon anything that's really useful. - Schadenfreude