public void Remove(string voc) { if (Items[voc] != null) { Items.Remove(voc); } }
public void Remove(string voc) { ItemsCollection items = Load(); if (items[voc] != null) { items.Remove(voc); } Save(items); }