C# Class Projbook.Extension.Model.Node

A node representing a graph root.
Exibir arquivo Open project: defrancea/Projbook Class Usage Examples

Public Properties

Property Type Description
Children Node>.Dictionary
IsLeaf bool
Name string

Public Methods

Method Description
Node ( string name, bool isLeaf ) : System

Initializes a new instance of Node.

Method Details

Node() public method

Initializes a new instance of Node.
public Node ( string name, bool isLeaf ) : System
name string
isLeaf bool
return System

Property Details

Children public_oe property

The children.
public Dictionary Children
return Node>.Dictionary

IsLeaf public_oe property

Whether the node is a leaf.
public bool IsLeaf
return bool

Name public_oe property

The node name.
public string Name
return string