Trouble creating a List of Array of Strings

I’m struggling to initialise a list of array of strings. I’ve made the variable but can’t find the syntax to initialise it in the workflow itself…

Any help would be appreciated.

1 2

2 Likes

Hi
No worries
The syntax for creating a normal list of string is
New List (of string)

If we are getting from a list of values
New List (of String) from {“value1”,”value2”,…,”value2”}

This can be initialised both in assign activity or in variable panel fine in both cases

Hope this would help you
Kindly try this and let know for any queries or clarification

Cheers @adam.williamson

Hi @adam.williamson,

Here I have attached the sample project for the initialize the Array and List .

image

AdamWilliamson.zip (11.1 KB)

Regards
Balamurugan.S

The syntax for creating the list of array of string is:
New List(Of string)
and then add the collection .

New List(Of String()) :wink: