private bool method_4() { TexExplorer.smethod_0(this.DataFolder_TreeView.SelectedNode, this.string_1, this.list_0); foreach (TreeNode current in this.list_0) { current.BackColor = Color.YellowGreen; } return(this.list_0.Count != 0); }
private static void smethod_0(TreeNode treeNode_0, string string_2, ICollection <TreeNode> icollection_0) { if (treeNode_0.Text.ToUpper().Contains(string_2.ToUpper())) { icollection_0.Add(treeNode_0); } for (int i = 0; i < treeNode_0.Nodes.Count; i++) { TexExplorer.smethod_0(treeNode_0.Nodes[i], string_2, icollection_0); } }