Can I delete an element in Dynamic Array ?
if so how to do ?
Can I delete an element in Dynamic Array ?
|
no
what you can do is make a second Dynamic Array copy what you want into it and then delete the first array.
or you could use vector
Last edited on
Just use a vector, dynamic pointers are evil. (Well, not really, but they're error-prone).