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