| TreeHelperGetRootT Method |
Gets the root of a tree.
Namespace: DigitalRune.LinqAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public static T GetRoot<T>(
T node,
Func<T, T> getParent
)
where T : class
Public Shared Function GetRoot(Of T As Class) (
node As T,
getParent As Func(Of T, T)
) As T
public:
generic<typename T>
where T : ref class
static T GetRoot(
T node,
Func<T, T>^ getParent
)
static member GetRoot :
node : 'T *
getParent : Func<'T, 'T> -> 'T when 'T : not struct
Parameters
- node
- Type: T
The reference node where to start the search. - getParent
- Type: SystemFuncT, T
A method that retrieves the parent object for a node of type T.
The method should return to indicate that a node does not have a
parent. GetRootT(T, FuncT, T) guarantees that getParent is never
called with as parameter.
Type Parameters
- T
- The type of node that is enumerated.
Return Value
Type:
TThe root node.
Exceptions See Also