 | GenericTreeTTraverse(ActionInt32, T) Method |
Goes recursively through the tree and calls the action for each node.
Namespace: NetEti.GlobalsAssembly: NetEti.Global (in NetEti.Global.dll) Version: 1.0.0+ad672dc5430e1683eae7461ce3945c8e9dce1c49
Syntaxpublic void Traverse(
Action<int, T> callback
)
Public Sub Traverse (
callback As Action(Of Integer, T)
)
public:
void Traverse(
Action<int, T>^ callback
)
member Traverse :
callback : Action<int, 'T> -> unit
Parameters
- callback ActionInt32, T
- The callback of type Action<int, T> to be called for each node.
See also