Click here to Skip to main content
15,886,720 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
here is my code

MyThes thes = new MyThes("th_en_us_new.idx", "th_en_us_new.dat");

Hunspell hunspell = new Hunspell("en_us.aff", "en_us.dic");

ThesResult tr = thes.Lookup("country", hunspell);

Response.Write(tr.IsGenerated.ToString());

now the problem is tr.IsGenerated is always false no matter what string i give as an input....
can any one help...
Posted
Updated 23-Oct-11 16:44pm
v3

1 solution

IsGenerated just indicates whether the meanings are generated by word stemming.

http://www.maierhofer.de/en/documentation/nhunspell/index.html[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900