Add | Adds a string to the end of the list. |
Clear | Removes all strings in the list. |
Find | Finds the index of the first string containing the specified sub-string. Returns -1 if the sub-string is not found. |
Insert | Inserts a string at the specified index. |
Remove | Removes the string at the specified index. |
ToString | Returns a concatenation of all elements of the StringList, delimited by StringList.Delimiter. |
Count | Get the number of strings in the collection. |
Delimiter | Get or set the delimiter that separates strings in the collection. |
Item | Get or set a string at the specified index. |