When I created a function in 7.6 I needed to add the ework object and args string array as the parameters.
public static function retSomething (ework: SyncProcessData, args: Object[]) : String
In 9.x and converting to C# I replace ework with ProcessContext, add a process object variable and add the args...
public static string retSomething(prcData p, string args[])
But I'm having trouble passing data into the "args[]" array... I can't pass something like new string[] {"Hello","World"} as the value for the parameter - I get a weak error that says I'm missing an assembly.
There must be a way to pass in an array of strings...