C# Class Projbook.Extension.Model.Node

A node representing a graph root.
Afficher le fichier Open project: defrancea/Projbook Class Usage Examples

Méthodes publiques

Свойство Type Description
Children Node>.Dictionary
IsLeaf bool
Name string

Méthodes publiques

Méthode Description
Node ( string name, bool isLeaf ) : System

Initializes a new instance of Node.

Method Details

Node() public méthode

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

Property Details

Children public_oe property

The children.
public Dictionary Children
Résultat Node>.Dictionary

IsLeaf public_oe property

Whether the node is a leaf.
public bool IsLeaf
Résultat bool

Name public_oe property

The node name.
public string Name
Résultat string