Class TranslationTreeNode
Inheritance
TranslationTreeNode
Assembly: Tlumach.Base.dll
Syntax
public class TranslationTreeNode
Constructors
TranslationTreeNode(string)
Declaration
public TranslationTreeNode(string name)
Parameters
| Type |
Name |
Description |
| string |
name |
|
Properties
ChildNodes
Declaration
public Dictionary<string, TranslationTreeNode> ChildNodes { get; }
Property Value
Keys
Contains the list of keys in the node.
Each key is a string without parent node names in it.
Declaration
public Dictionary<string, TranslationTreeLeaf> Keys { get; }
Property Value
Name
Contains the own name of the node (without parent names).
Declaration
public string Name { get; }
Property Value
Methods
FindNode(string)
Declaration
public TranslationTreeNode? FindNode(string name)
Parameters
| Type |
Name |
Description |
| string |
name |
|
Returns
MakeNode(string)
Declaration
public TranslationTreeNode? MakeNode(string name)
Parameters
| Type |
Name |
Description |
| string |
name |
|
Returns