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.


See also

TStringList.Create