コード例 #1
0
ファイル: SearchEngine.cs プロジェクト: lycilph/BookCollector
 public void InitializeFromFile(string stopwords_filename)
 {
     stopword_handler = new StopWordHandler(stopwords_filename);
 }
コード例 #2
0
ファイル: SearchEngine.cs プロジェクト: lycilph/BookCollector
 public void Initialize(string stopwords)
 {
     stopword_handler = new StopWordHandler();
     stopword_handler.Initialize(stopwords);
 }