Can someone tell me the applicable differences between ArrayCollection and Vector in flex? I am not sure if I should use one over the other. I saw that Vector is type safe and it makes me feel better, but are there any flaws?
public var ac:ArrayCollection = new ArrayCollection();
against
public var vec:Vector.<String> = new Vector.<String>();
Thanks.
flex
Vetsin
source share