예제 #1
0
        public static bool WordExistsOffline(string word)
        {
            SearchWord sw;

            try
            {
                sw = new SearchWord();
            }
            catch (Exception e)
            {
                throw new Exception("Could not open connection to offline database.", e);
            }

            bool found;

            using (sw)
            {
                found = sw.SearchForWordOffline(word);
            }

            return(found);
        }