IPropertyListItem IPropertyListDictionary.Add(string key, bool value) { if (string.IsNullOrEmpty(key)) { throw new ArgumentNullException("key"); } var item = new PropertyListBooleanItem(key, value); return(Add(item)); }
IPropertyListItem IPropertyListDictionary.Add(string key, bool value) { if (string.IsNullOrEmpty(key)) throw new ArgumentNullException("key"); var item = new PropertyListBooleanItem(key, value); return Add(item); }
IPropertyListItem IPropertyListItem.Add(bool value) { var item = new PropertyListBooleanItem(null, value); return Add(item); }
IPropertyListItem IPropertyListItem.Add(bool value) { var item = new PropertyListBooleanItem(null, value); return(Add(item)); }