C# 클래스 RadixTree.Node

represents a node in the radix tree stores: a label - string that the tree holds a list of the node's subnodes - a list of other objects of this type
파일 보기 프로젝트 열기: paratechnical/RadixTree 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
Label string
SubNodes List

공개 메소드들

메소드 설명
Node ( ) : System
Node ( string l ) : System

메소드 상세

Node() 공개 메소드

public Node ( ) : System
리턴 System

Node() 공개 메소드

public Node ( string l ) : System
l string
리턴 System

프로퍼티 상세

Label 공개적으로 프로퍼티

public string Label
리턴 string

SubNodes 공개적으로 프로퍼티

public List SubNodes
리턴 List