Lucene.Net.Analysis.Hunspell.HunspellStemmer.HunspellStemmer C# (CSharp) Method

HunspellStemmer() public method

Constructs a new HunspellStemmer which will use the provided HunspellDictionary to create its stems.
public HunspellStemmer ( HunspellDictionary dictionary ) : System
dictionary HunspellDictionary HunspellDictionary that will be used to create the stems.
return System
        public HunspellStemmer(HunspellDictionary dictionary) {
            if (dictionary == null) throw new ArgumentNullException("dictionary");
            _dictionary = dictionary;
        }