Show / Hide Table of Contents

    Interface INode<T>

    A node in a graph.

    Namespace: Virtlink.Utilib.Collections.Graphs
    Assembly: Virtlink.Utilib.dll
    Syntax
    public interface INode<out T>
        where T : INode<T>
    Type Parameters
    Name Description
    T

    The type of node.

    Properties

    | Improve this Doc View Source

    Children

    Gets the children of the node.

    Declaration
    IReadOnlyCollection<T> Children { get; }
    Property Value
    Type Description
    System.Collections.Generic.IReadOnlyCollection<T>

    A collection of child nodes.

    • Improve this Doc
    • View Source
    Back to top Copyright - Daniel Pelsmaeker