Exemplo n.º 1
0
 public new object Clone()
 {
     CustomerList NewList = new CustomerList();
     foreach (CustomerItem item in items)
     {
         NewList.Add((CustomerItem)item.Clone());
     }
     return NewList;
 }