Not able to declare List as system.collections.generic (list of strings)

Hi all,

I’m adding a new list:
image

and I’m trying to give it the variable type “system.collections.generic” to have a list of strings, for which I later use “add collection” but I get the following error:

How can I assign the variable type so I don’t have validation errors?

PS: the namespace is imported:

2 Likes

Hi there @yannip,
Apologies if I’ve misunderstood.

You should be able to declare a list via your above method, but ensure you set the type.

For example:
image

This should prevent the “Not all generic types could be resolved” error.

Thanks in advance,
Josh

5 Likes

Thanks!! That’s indeed it!

1 Like