 | GenericTreeT Class |
Provides a generic tree
Inheritance hierarchy Namespace: NetEti.GlobalsAssembly: NetEti.Global (in NetEti.Global.dll) Version: 1.0.0+ad672dc5430e1683eae7461ce3945c8e9dce1c49
Syntaxpublic class GenericTree<T>
where T : GenericTree<T>
Public Class GenericTree(Of T As GenericTree(Of T))
generic<type name T>
where T : GenericTree<T>
public ref class GenericTree
type GenericTree<'T when 'T : GenericTree<'T>> = class end
Type parameters
- T
- Type of the concrete tree (derived from GenericTree).
The GenericTreeT Type exposes the following members.
Constructors
Properties
Methods | Name | Description of the |
---|
 | Climb2Top |
Shimmies up through the tree (up to the root)
and calls up the action for each node.
|
 | Traverse(ActionInt32, T) |
Goes recursively through the tree and calls the action for each node.
|
 | Traverse(FuncInt32, T, Object, Object) |
Goes recursively through the tree and calls the action for each node.
|
 | Traverse(Int32, ActionInt32, T) |
Recursive auxiliary routine for the public routine 'Traverse'.
|
 | Traverse(Int32, FuncInt32, T, Object, Object, Object) |
Recursive auxiliary routine for the public routine 'Traverse'.
|
Back to the top
Fields
Remarks
File: GenericTree.cs
Author: Erik Nagel
01.12.2012 Erik Nagel: created
See also