Resizing An Array Of Objects In A Class
It won’t work. Best approach usually is to use a list instead of an array. Alternatively you have to copy the array to a new array with a different size using Array::Copy
Array::Copy(obj->ClassValueArray1, ClassValueArray1, NewSize);