Accessing a Particular String
Go Up to Manipulating Strings in a List
The Strings array property contains the strings in the list, referenced by a zero-based index:
C++:
StringList1->Strings[0] = “This is the first string.”;
Because Strings is the default property for string lists, you can omit the Strings identifier when accessing the list; thus
Delphi:
StringList1.Strings[0] := 'This is the first string.';
is equivalent to
Delphi:
StringList1[0] := 'This is the first string.';