Exemplo n.º 1
0
 public IEnumerator GetEnumerator()
 {
     Product[] tmp = new Product[Count];
     for (int i =0; i < Count; i++)
         tmp[i] = Products[i];
     return tmp.GetEnumerator();
 }