I have a tree created from this class.
class Node
{
public string Key { get; }
public List<Node> Children { get; }
}
I want to search in all childrens and all their childrens get the ones matching one condition:
node.Key==SomeSpecialKey
How can I implement it?
