MyChat Scripts: function TStringList.Create, create a text list
"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.