委托 NodeVisitor

NodeVisitor delegate

遍历整个节点层次结构的回调。

public delegate bool NodeVisitor(Node node);
参数类型描述
节点节点正在访问的节点

返回值

返回 false 以停止遍历

另请参见