我已经看到了此错误消息的解决方案,但它没有帮助,请帮助我们。
string word = "hate";
string[] syn = S.GetSynonymsBySystem(word);
MessageBox.Show(syn[1].ToString());
当我运行上面的代码时,它没有显示任何错误,并在消息框中将输出作为Emotion
。这意味着链接到wordnet库没有错误。
所以,当我在final
中输入一系列单词并保存时。然后开始逐个搜索,使用下面的代码。
foreach (string keyword in final)
{
MessageBox.Show(keyword); //It shows the keyword here. which means no error in declaring my final array
string[] synonyms= S.GetSynonymsBySystem(keyword);
MessageBox.Show(synonyms.Length.ToString()); //Here is the error
}
我收到以下错误:
An unhandled exception of type "System.NullReferenceException" occured"
我不知道出了什么问题?可以帮我吗?非常感谢。