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);
         }
     }
 }