EDIT: You beat me to it, Ian! If I'd have posted 30 seconds earlier ...
Quote:
Originally Posted by Stryke
Nice. Thanks!
One question: Is there a way to delete an array?
|
this.array.clear();
Generally I do this:
PHP Code:
this.array.clear();
this.array = null;
As sometimes clear() doesn't work, for some reason.