MyChat Scripts: function TStringList.Free, delete a text list from memory
A TStringList destructor. Free memory and delete a class variable from memory.
Syntax
function TStringList.Free;
Function result
Releases the memory and deletes a previously created class.
Example
var
SL: TStringList;
begin
SL := TStringList.Create;
SL.Free;
end.