 | GenericTreeTTraverse(Int32, ActionInt32, T) Method |
Recursive auxiliary routine for the public routine 'Traverse'.
Namespace: NetEti.GlobalsAssembly: NetEti.Global (in NetEti.Global.dll) Version: 1.0.0+ad672dc5430e1683eae7461ce3945c8e9dce1c49
Syntaxprotected virtual void Traverse(
int depth,
Action<int, T> callback
)
Protected Overridable Sub Traverse (
depth As Integer,
callback As Action(Of Integer, T)
)
protected:
virtual void Traverse(
int depth,
Action<int, T>^ callback
)
abstract Traverse :
depth : int *
callback : Action<int, 'T> -> unit
override Traverse :
depth : int *
callback : Action<int, 'T> -> unit
Parameters
- depth Int32
- The hierarchy level.
- callback ActionInt32, T
- The callback of type Action<int, T> to be called for each node.
See also