Question
Aarete
US
Last activity: 3 Jun 2020 9:43 EDT
Out parameter returning nothing
Hi,
I created following C# method in the utility script. This method always return the value of output parameter message as "NULL"
It is correctly returning true; but the value of output string is always NULL
public bool Hello(out string message) { message = "Hello how are you"; return true; }
Please advise whether in Pega Robotics output parameters are used correctly above syntactically