예제 #1
0
 public void RemoveZuneAttribute(string name)
 {
     //we are removing all from the list just incase there are repeating attributes
     _container.Where(x => x.Name == name).ToList().ForEach(attrib => _container.Remove(attrib));
 }