“Did you mean?” feature in Lucene.net

You should look into the SpellChecker module in the contrib dir. It’s a port of Java lucene’s SpellChecker module, so its documentation should be helpful. (From the javadocs:) Example Usage: import org.apache.lucene.search.spell.SpellChecker; SpellChecker spellchecker = new SpellChecker(spellIndexDirectory); // To index a field of a user index: spellchecker.indexDictionary(new LuceneDictionary(my_lucene_reader, a_field)); // To index a file containing … Read more