Exemplo n.º 1
0
 /// <summary>
 /// Get all the words that have the passed in prefix
 /// </summary>
 /// <param name="prefix">search prefix</param>
 /// <returns>a list of 10 words</returns>
 public List <string> GetWords(string prefix)
 {
     return(_root.GetWords(_root, prefix));
 }