Hello
I defined a user Activity as below
[Category(“Input”)]
public List outputs { get; set; }
When using my activity in a UiPAth Studio Sequence group, UiPath Studio display the property ‘outputs’ as
outputs (Collection)
And when I replace ‘(Collection)’ by ‘New List(of string) From {“value1”,“value2”}’, UiPath Studio is displaying a popup modal window with the message below:
The property ‘outputs’ does not take in charge the conversion from a string to a value.
So how can be initialized this ‘outputs’ property?
Seems that the collection type you are trying to put in is wrong. To check the exact collection type of this just remove everything what you wrote in it’s property and use CTRL+K button to create variable there. Then in variable pane you will see the exact type of needed data.