SpellChecker.Net.Search.Spell.SpellChecker.SpellChecker C# (CSharp) Method

SpellChecker() public method

Use the given directory as a spell checker index with a LevenshteinDistance as the default StringDistance. The directory is created if it doesn't exist yet.
public SpellChecker ( Lucene.Net.Store.Directory spellIndex ) : System
spellIndex Lucene.Net.Store.Directory the spell index directory
return System
        public SpellChecker(Directory spellIndex)
            : this(spellIndex, new LevenshteinDistance())
        { }

Same methods

SpellChecker::SpellChecker ( Lucene.Net.Store.Directory spellIndex, StringDistance sd ) : System