I have a tree view that has been built fine with no issues.
Is their a way to start looping through the nodes at the current selected node instead of looping through all of them?
TreeNodeCollection nodes = treeView.Nodes;
foreach (TreeNode n in nodes)
{
}