///<summary> /// Class Constructor ///</summary> ///<param name="wordContainerConfig">Configuration</param> ///<exception cref="Exception"></exception> public WordContainerTree(WordContainerTreeConfig wordContainerConfig) : this() { this.m_dictionaryFileName = wordContainerConfig.DictionaryFileName; if (!this.Load()) { throw new Exception("Could not load dictionary file!"); } }
///<summary> /// Class Constructor ///</summary> ///<param name="wordContainerConfig">Configuration</param> public AutoCompleteWordContainerTree(WordContainerTreeConfig wordContainerConfig) : base(wordContainerConfig) { }