示例#1
0
 public Category(string cat, ExcludedWords excluded)
 {
     m_Phrases  = new SortedDictionary <string, PhraseCount>();
     m_Excluded = excluded;
     m_Name     = cat;
 }
示例#2
0
 public Classifier()
 {
     m_Categories    = new SortedDictionary <string, ICategory>();
     m_ExcludedWords = new ExcludedWords();
     m_ExcludedWords.InitDefault();
 }
示例#3
0
 public EnumerableCategory(string Cat, ExcludedWords Excluded) : base(Cat, Excluded)
 {
 }