"For developers", "Server scripts", "Functions description", "Strings", "TStringList", "Methods", "Create".

 

A TStringList constructor. Create a list and assign it a variable of the TStringList type.

 

Syntax

function TStringList.Create: TStringList;

 

Function Result

The function returns an empty list for working with strings.

 

Example

var
  SL: TStringList;
begin
  SL := TStringList.Create;
  SL.Free;  
end.

See also

TStringList.Free