Is the following code functionally identical:
target.removeAll();
for each (var item:* in source)
{
target.addItem(item);
}and this: target = new ArrayCollection(source.toArray()); Thanks
Is the following code functionally identical:
target.removeAll();
for each (var item:* in source)
{
target.addItem(item);
}and this: target = new ArrayCollection(source.toArray()); Thanks