您可以向NHunspell(Hunspell的.NET端口)添加单词
NHunspell.Hunspell hunspell = new NHunspell.Hunspell(".affPath", ".dicPath");
String[] words = GetUserWords();
foreach (String word in words)
hunspell.Add(word);
如果我需要从对象中删除单词怎么办?有没有办法从NHunspell对象中删除一个单词而无需创建新单词并再次添加自定义单词?
答案 0 :(得分:0)
当前(1.1.0.0)删除未在NHunspell中实现,但我考虑在下一版本中实现
增加: 由于(1.1.1.0)删除已实现。