ABB.Swum.NullStemmer.Stem C# (CSharp) 메소드

Stem() 공개 메소드

Returns the supplied word unchanged.
public Stem ( string word ) : string
word string The word to stem.
리턴 string
        public override string Stem(string word)
        {
            return word;
        }
    }
NullStemmer