Hi,
I have a EntityCollection and i would like to know how can i add Objects to that EntityCollection in my ScriptTask.
EntityCollection ec = Get("ProcessParameter1");
var entity;
ec.Add(entity);
Set("ProcessParameter1",ec);
Like
1 comments
15:37 May 29, 2019
The Add method is correct. Additionally, I'd not recommend using a simple list instead.
Show all comments