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. |
CombineWith | Appends the passed in StringArray to the current StringArray. |
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. |
IndexOf | Returns a index of a element in the array. |
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. |
Map | Maps the StringArray to a new array doing translation for each element of the array in a delegate method that is passed in. |
MoveFirst | Use to reset the iterator in the StringArray. |
Operator_Redim | Implements the Redim operator. |
Operator_Subscript | Implements operator to read from the array with the ( ) indexer operator. |
Operator_Subscript | Implements operator to write to the array with the ( ) indexer operator. |
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. |
Walk | Calls the given delegate routine for each element in the array. |
MapStringArrayDelegate (console safe) | A delegate for the Map method on this class. |
WalkStringArrayDelegate (console safe) | A delegate for the Walk method on this class. |