我想找出特定单词的同义词,例如" help"。帮助的同义词是" aid"," help"或者"援助"等
我已下载Wordnet库并在Visual Studio中使用它。
使用此代码:
WordNetEngine wne = new WordNetEngine();
PartOfSpeech pos = new PartOfSpeech();
SynSet ss = new SynSet(pos, 0, wne);
Console.WriteLine("words form wordnet" + ss.Words);
但这不起作用。
请问C#中的代码示例可以帮助我吗?