Which type of list

Hey guys,

I want to save information from a workflow into a “list” to generate a status report.

Which “data type” should i use for the list? I would like to deposit strings and integers in this list.
If I use the data type “System.Collections.Generic.List”, I get the pop up “Not all generic types could be resolved.”

And is there an “add activity” to add the information to the list? How I get the Informatin to the list?

Tanks :slight_smile:

1 Like

KTry selecting “object” type from dropdown of List.This way you could accommodate both string and int in your list.

The activity you asked would be “Add to Collection”.

1 Like

Perfect. Thank you! :slight_smile: