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
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
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