I have an array x in size of objects (between 1 and 100) and I want to increase the size to 101 … I’ve resized the array and that adds the objects but unfortunatly (not suprising) the added items have not been initialised, do I’ve reverted to using a do while loop and adding the elements indiviually, but looking at the code around it where addrange is used extensivily, I was just wondering if that was a neat vb.net way of doing the same thing
Bit of a learning question, just looking for neat ways to do the same thing
Thanks in advance
Yes you need to loop and add new objects into newly added indexes.