CollectAllWords() private method

private CollectAllWords ( TextBuffer textBuffer, List output ) : void
textBuffer TextBuffer
output List
return void
Ejemplo n.º 1
0
 public void GetWordList(char startWithChar, List <string> output)
 {
     if (startWithChar >= firstChar && startWithChar <= lastChar)
     {
         //in range
         WordGroup found = this.wordGroups[TransformCharToIndex(startWithChar)];
         if (found != null)
         {//iterate and collect into
             found.CollectAllWords(this.textBuffer, output);
         }
     }
 }