private static string LemmatizeOne(LemmaSharp.ILemmatizer lmtz, string word) { string wordLower = word.ToLower(); string lemma = lmtz.Lemmatize(wordLower); return lemma; }
private static string LemmatizeOne(LemmaSharp.ILemmatizer lmtz, string word) { string wordLower = word.ToLower(); string lemma = lmtz.Lemmatize(wordLower); Console.ForegroundColor = wordLower == lemma ? ConsoleColor.White : ConsoleColor.Red; return lemma; }