C# 클래스 Projbook.Extension.Model.Node

A node representing a graph root.
파일 보기 프로젝트 열기: defrancea/Projbook 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
Children Node>.Dictionary
IsLeaf bool
Name string

공개 메소드들

메소드 설명
Node ( string name, bool isLeaf ) : System

Initializes a new instance of Node.

메소드 상세

Node() 공개 메소드

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

프로퍼티 상세

Children 공개적으로 프로퍼티

The children.
public Dictionary Children
리턴 Node>.Dictionary

IsLeaf 공개적으로 프로퍼티

Whether the node is a leaf.
public bool IsLeaf
리턴 bool

Name 공개적으로 프로퍼티

The node name.
public string Name
리턴 string