public SpellCheckDictionaryDefinition(SpellCheckDictionaryDefinition other)
 {
     _format = other._format;
     _urls   = new ObservableList <string>(other._urls);
     SetupCollectionChangeListeners();
 }
 public SpellCheckDictionaryDefinition(SpellCheckDictionaryFormat format)
 {
     _format = format;
     _urls   = new ObservableList <string>();
     SetupCollectionChangeListeners();
 }