DartStrings Collection : All Property |
Visual Basic |
---|
Public Property All As String |
Read-only. For example, if the Delimiter is ":" and the strings in the collection are "ab", "cd", and "ef", then this property returns "ab:cd:ef".
The All property takes linear (O(n)) time for strings of less than 50kB, and 0(n*size/50kB) for longer strings, where n is the number of independent strings and size is the size of the resultant string in kB. The method used is about 50-100 times as fast as most similar techniques in use today.