| July 2008 | 1 | 1 |
| 0 | 0 | 1 |
checks if the array parameter is larger than the size of the collection. If so, it adds all
elements of the collection into the array, followed by a null terminator, and it returns
the array. If the length of array equals the size of the collection, then the method adds
all elements of the collection to the array but does not add a null terminator. If there
isn't enough room, then the method creates a new array, of the same type as theincoming array, and fills it with the elements of the collection.