This repository was archived by the owner on Jun 10, 2024. It is now read-only.
Replies: 1 comment
|
Hi @ibt1haj, see my answer here: #23 And working example here: https://dotnetfiddle.net/fToXRw TL/DR: don't use |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
i have implemented my own function to work with the expressions in ncalc
it works fine for simple inputs like
but if i use parametrized input
my function fails to evaluate the expression correctly and throws the exception because the input is now in list
so i have changed my implementation of the custom function
but still it returns '0' for every input parameter value on the following line
var tempResult = await args.Parameters[0].EvaluateAsync();can some body point me in the right direction ?
All reactions