How to add two lists or arrays?

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}

L1.concat(L2).tolist / toArray

2 Likes

Where I can find the list methods like Concat? (Documentation)

1 Like

Thanks.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.