Hi ,
i am trying to add an item (abc) in collection variable(ArrCollection), but it is returning error as mentioned in this thread.
please refer below screenshot and explain the issue
→ You can create a list in the below way to assign a list.
Str_list= New List(OfString)
Str_list id is of DataType System.Collections.Generic.List(Of String)
To add items to the list you can use Append Items to collections activity to add items to the list.
→ If you want to add items to the list you can do the below way by taking it in assign activity. The below syntax will initialise a new list add item1,item2,item3 to the list.
Str_list= New List(Of String) From {"item1","item2","item3"}
Str_list id is of DataType System.Collections.Generic.List(Of String)