lavint
1
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?

For Array, new String(4){}
For List, new List(Of String)
How to combine them?
Anand007
(Anand Jaiswal)
2
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
system
(system)
Closed
4
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.