New in VB6, functions can return arrays.
The program could invoke this function as in:
Dim strings() As String
strings = NumberList()
This assignment may not work if the array is declared statically (using explicit bounds) and the bounds do not match those of the array returned by the function.
|