コード例 #1
0
        public void GrabAllWords()
        {
            var path = @"D:\github\WhiteStone\WhiteStone.Test\LanguageTranslations\SampleEnglishWords.txt";

            var words = SesliSözlük.GrabAllWords(File.ReadAllLines(path).Where(line => line.HasValue()));

            FileHelper.WriteAllText(path + ".output.txt", JsonHelper.Serialize(words));
        }