Beispiel #1
0
 public static DictionaryInstance BuildDictionaryTextAssetInstance(TextAsset textAsset)
 {
     string[] wordsFoundInFile = BuildDictionaryLogic.ScrubDictionaryFile(textAsset);
     if (wordsFoundInFile == null)
     {
         return(null);
     }
     else
     {
         return(new DictionaryInstance(wordsFoundInFile));
     }
 }
Beispiel #2
0
 public List <String> GetAllWordsInString(string bigString)
 {
     return(BuildDictionaryLogic.GetAllWordsInString(words, bigString));
 }