Object
StringArray
StringArray | The default constructor for the StringArray class. |
StringArray | Use this constructor to construct a instance of the array and have influence on the grow rate of the array. |
AddItems | Use this method to add multiple strings from any container that implements the IStringIterator interface. |
Append | Use this method to append a string to the array. |
Count | Use this function to get the element count from the array. |
GetNext | Use to get next item from the StringArray. |
HasNext | Use to get info if there are more items in the StringArray. |
Insert | Use this method to insert a string to the array. |
Item | Use this setter/getter function to read or write to a item in the array. |
MoveFirst | Use to reset the iterator in the StringArray. |
PeekNext | Use this function to peek at next item from the StringArray without causing iteration. |
Remove | Use this method to remove a single string from the array. |
Remove | Use this method to remove strings from the array. |
Resize | Use this method to resize the array. |
Sort | Use this method to sort the array. |
Swap | Use this method to swap two objects in the array. |