Hi.
I have this kind of common problem, but cant find a solution for it after many google searches.
What i want is this:
ArrayList items = new ArrayList();
items.add(item1); //the item object contains several properties
items.add(item2);
items.add(item3);
foreach (item i in items)
{
Create and edit a new unique object
based on the content in this 'item' object
}
Hope you can help.
Thanks alot!