Constructors
| Constructor | Description |
|---|---|
StringArray StringArray() | Creates an empty array. |
StringArray StringArray( String ) | Creates an array consisting of the given string. |
Methods
| Method | Description |
|---|---|
Int Count() | Returns the number of elements in the array. |
String GetAt( Int index ) | Returns the element with the specified index. |
Void Add( String ) | Adds a string to the end of the array. |
Void Add( StringArray ) | Adds another array to the end of the array. |
Void InsertAt( Int index, String ) | Adds a string to position index. |
Void DeleteAll() | Deletes all elements of the array. |
Void DeleteAt( Int index ) | Deletes the element in position index. |
