"For developers", "Server scripts", "Functions description", "Strings", "TStringList", "Methods", "Free".
A TStringList destructor. Free memory and delete a class variable from memory.
function TStringList.Free;
Releases the memory and deletes a previously created class.
var
SL: TStringList;
begin
SL := TStringList.Create;
SL.Free;
end.