I know that an ArrayCollection is a wrapper over an Array, but what I wanted to know is when to choose one over the other? Will the over usage of ArrayCollections result in performance?
I know that an ArrayCollection is a wrapper over an Array , but what
Share
The main advantage of
ArrayCollectioniscollectionChangeevent which allows to get advantage of data binding with it.Some others are:
ICollectionViewwhich allows to create a cursor and iterate collection with it.If you don’t need any of these advantages use simple
Array.