How add lists

Hi
Hope these steps could help you resolve this
Just two steps
— in the variable panel create a variable of type
System.Collections.Generic.List(String)
And with default value as
New List(of String) and name the variable list_string

— now to add value value to that list we can use a special activity called
Add to Collections where in the property panel mention the collections as list_string and
In the item mention the string value we want to add
Like “value1”
And change the type argument as string in the property panel

For example here you go - one example from uipath resource

Simple isn’t it

Cheers @KarthikBallary

4 Likes