Parameters & Returns
Parameters
This function takes no parameters.
Returns
Quick Summary
Deallocates an object instance and frees its memory
Technical Exegesis...
Deallocates an object instance and frees its memory. Syntax is Remove objectVariable. Deletes the object and releases its memory back to the system. After calling Remove, the variable becomes Null and should not be used. Important for preventing memory leaks when objects are no longer needed.