Пример #1
0
 /// <summary>
 /// Builds the dictionary based upon the choosen word list
 /// defined by the lexicon class member.
 /// </summary>
 private static void BuildWordList()
 {
     try
     {
         Dawg.BuildDictionary(@"C:\Users\Eric\Documents\visual studio 2015\Projects\BoggleSolver\BoggleSolver\Dictionary\Dictionary2.dawg");
     }
     catch (FileNotFoundException ex)
     {
         throw new IOException("Dictionary file not found.", ex);
     }
 }