Ok,
I have a list of things in an array, they are all dynamic. How would you guys say is the easiest way to add a new element to the middle of this array after which having the elements above incrementing?
For example, here is my list:
myArray(0) = Money
myArray(1) = Cars
myArray(2) = Girls
Now, let's say I want to shove the word 'Mansions' before Girls, how would I go about doing so? If not by using arrays, what would be a better way of accomplishing this?
Thanks in advance...
Damann
I have a list of things in an array, they are all dynamic. How would you guys say is the easiest way to add a new element to the middle of this array after which having the elements above incrementing?
For example, here is my list:
myArray(0) = Money
myArray(1) = Cars
myArray(2) = Girls
Now, let's say I want to shove the word 'Mansions' before Girls, how would I go about doing so? If not by using arrays, what would be a better way of accomplishing this?
Thanks in advance...
Damann