Is there any method to add one list (or array) to another in one go (any vb mthod)
list1 = {1, 2, 3}
list2 = {4, 5, 6}
output
list1 = {1, 2, 3, 4, 5, 6}
Is there any method to add one list (or array) to another in one go (any vb mthod)
list1 = {1, 2, 3}
list2 = {4, 5, 6}
output
list1 = {1, 2, 3, 4, 5, 6}
Where I can find the list methods like Concat? (Documentation)
Thanks.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.