OK this is going to sound hilarious but still I have a class like so
class TermNode
{
public string Name;
public string Definition;
public List<TermNode> Children
}
So this is a N-Ary non sorted in any way Tree. A node can have 0-N children
OK so given this data structure how will you fill up a tree View with it Assume you have an array of TermNodes so that array form teh first level of the TreeVIew I am just not able to come up with a recursive way to do this