How to merge 2 Array lists into one in UiPath.

In this article, we will cover how you can merge the 2 array int list into one list.

Implementation in UiPath

Step 1:- Drag an assign activity in the designer panel and define the first array of integer list.
image

Step 2:- Drag another assign activity in the designer panel and define the second array of integer list.
image

Step 3:- There is a very useful vb.net function i.e Union that would combine them into one.

We will use a for each loop to see the new combined list values.

Step 4:- Lets run the workflow now.
image