public EnglishDictionary()
 {
     _set = _baseSet.Clone(true);
 }
 private EnglishDictionary(SemanticSet wordSet)
 {
     _set = wordSet;
 }
 static EnglishDictionary()
 {
     _baseSet = new SemanticSet(ReadFile("en_dict.txt"));
 }