I want to add an array to another array.
dim array1() as string
dim array2() as string
array1(0) = "goto"
array1(1) = "hell"
array2(0) = "and"
array2(1) = "back"
Now i want to add the contents of array1 into array2 without loop and independent from the array length. Is this possible ?
