ABB.Swum.FileStemmer.FileStemmer C# (CSharp) 메소드

FileStemmer() 공개 메소드

Creates a new FileStemmer using the file specified.
public FileStemmer ( string stemFilePath ) : System
stemFilePath string The path to the file containing the word/stem pairs to use.
리턴 System
        public FileStemmer(string stemFilePath)
        {
            Stems = LibFileLoader.ReadStemFile(stemFilePath);
        }