Exemplo n.º 1
0
 public void Remove(string voc)
 {
     if (Items[voc] != null)
     {
         Items.Remove(voc);
     }
 }
Exemplo n.º 2
0
        public void Remove(string voc)
        {
            ItemsCollection items = Load();

            if (items[voc] != null)
            {
                items.Remove(voc);
            }
            Save(items);
        }