I am used to the C++ requirement of using
delete [ ] array_pointer;
to free memory.
If I have a CLI array like
pString_progString = gcnew array<System:
tring ^>(7);
How do I delete it I have read that I should not use the "delete [ ]" form, but I do not know what to use.
The help system for "array" makes no mention of this.
I am new to the CLI constructs and thus may be missing something basic.
Thanks.
Thomas