Hi all,
could anybody give an example of how to split a tree by the first index in C#? Would be really appreciated
Like this:
Many thanks!
Hi all,
could anybody give an example of how to split a tree by the first index in C#? Would be really appreciated
Like this:
Many thanks!
No really familiar with C# in GH but I’m guessing this is a pattern that could work.
@Will_Wang, If you want to append a list of data items
to the specified branch in the tree, you’d better use AddRange instead of Add
.
If you prefer to use Add
, you have to manually iterate over all the items in the specified branch.
Thanks @Mahdiyar