Is it possible to have 2 names in the value of argument?

Hi @Soudios

We can use an array of string (string) and pass the value as

new string(){"name1","name2"}

Thanks

1 Like

@prasath_S

name is a variable

@Soudios please try below steps,

  1. Name1 and Name2 are the string variables in main workflow.

  2. Create a argument in the child workflow name : arrValue and type : array of string string[]

  3. Pass the value from main workflow as below,

new string(){Name1,Name2}
  1. Retrieve the values from child workflow as below
Name1 - arrValue(0)
Name2 - arrValue(1)

Thanks