@ChrisM_X,
Thank you for the snippet. I am trying to understand, where in your snippet are you invoking a function ?
TestPower = function({base,expn},{default local},
res = base ^ expn ;
Retrun(res);
);
Let us assume we have a user defined function in JMP like the one shown above. Now, starting from C#, how can I invoke this function by passing it parameters for base and exp and run this function ?
The snippet you shared addresses the part about how we can use the RunCommand function to pass a value, but can you use a simple example like this to explain the process a little more in detail ?
So, if i have the above function stored as TestPower.jsl on my C:\ , can you kindly share on how I would be able to run using C#, by passing it the parameters and calling this function ?
Best
Uday