Question
RBC
CA
Last activity: 12 Mar 2019 10:04 EDT
How can I pass variable numbers of parameters
In C# you can create a function that can accept variable numbers of parameters.
ex: public void PassingMultiple(string Msg, params string[] Extras) {}
I can use that in a Pega Automation and it behaves nicely, accepting 1, 2, etc.. args.
But how can I create an automation that accepts multiple parameters
ex:
Any suggestions are welcomed... The reason is that I have a DLL that accepts multiple args, and I want to wrapper it with a Pega automation to remove need to add the DLL reference manually..