rmandvikar.Trie.TrieNode.TrieNode C# (CSharp) Method

TrieNode() private method

Constructor for character.
private TrieNode ( char character, TrieNode>.IDictionary children, bool isWord, int wordCount ) : System.Collections.Generic
character char The character for the TrieNode.
children TrieNode>.IDictionary Children of TrieNode.
isWord bool If root TrieNode to this TrieNode is a word.
wordCount int
return System.Collections.Generic
        internal TrieNode(char character, IDictionary<char, TrieNode> children,
            bool isWord, int wordCount)
        {
            Character = character;
            Children = children;
            IsWord = isWord;
            WordCount = wordCount;
        }