Hi,
I have an array:
The typeMap I have declared before and it has some integers and boolean and one long.Code:public Map(1 to 20,1 to 20) as typeMap
How can I delete it at the end of the game from the memory?
Thank you,
Arie.
Printable View
Hi,
I have an array:
The typeMap I have declared before and it has some integers and boolean and one long.Code:public Map(1 to 20,1 to 20) as typeMap
How can I delete it at the end of the game from the memory?
Thank you,
Arie.
It will automatically be destroyed when your program goes out of scope. If it's global, then it will be destroyed when the program ends.
Thank you,
Arie.