예제 #1
0
 public GenListContainer(AbstractGenCollection <T> products)
 {
     for (int i = 0; i < products.Length; i++)
     {
         Add(products[i]);
     }
 }
예제 #2
0
 public void Add(AbstractGenCollection <T> products)
 {
     for (int i = 0; i < products.Length; i++)
     {
         Add(products[i]);
     }
 }
예제 #3
0
 public GenContainer(AbstractGenCollection <T> products)
 {
     Add(products);
 }