Initialize Array of List

Hello,

I have 4 lists and I want to put them into an Array. I am curious how can I initialize this new Array of Lists?

I have assigned the lists to the array but what is the syntax to a new array of list?
image

For Array, new String(4){}
For List, new List(Of String)

How to combine them?

Hi @lavint Check this workflow ArrayList.xaml (8.6 KB)

For List: new List(of String)
For Array: new List(of String)(Size_of_Array){}

2 Likes

Got it! Thank you :slight_smile:

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