引用 Guid 的 NCalc 自定义函数

NCalc custom function referencing a Guid

我正在尝试使用 NCalc 从 JSON 文件中解析一些公式。

但有时我需要通过 GUID 引用另一个对象并获取该对象公式:

public class FooObject
{
  NCalc.Expression expression;
  double Value;
  public void SetValue()
  {Value = (double)expression.Evaluate()} //this throws "Value was either too large or too small for a Double."

  public FooObject()
  { expression = new NCalc.Expression("TechData(b8ef73c7-2ef0-445e-8461-1e0508958a0e)")}
    expression.EvaluateFunction += NCalcFunctions;
  }
}

public static void NCalcFunctions(string name, FunctionArgs args)
{
  if (name == "TechData") //breakpoint shows we never get this far
  {
    Guid techGuid = new Guid(args.Parameters[0].ToString());
    TechSD techSD = _staticData.Techs[techGuid]; //this returns an TechSD object that matches the given guid.
    args.Result = techSD.DataExpression;//returns an NCalc expression from the techSD
  }
}

SetValue() 引发异常(Value 对于 Double 来说太大或太小),自定义函数永远不会被调用。

我怀疑它正在尝试解析 GUID。这是正确的吗?我想用 NCalc 做的事情是可能的吗?有没有更好的工具?

在此 NCalc 表达式中:

TechData(b8ef73c7-2ef0-445e-8461-1e0508958a0e)

GUID b8ef73c7-2ef0-445e-8461-1e0508958a0e 未被解析为字符串(注意没有单引号),然后 NCalc 将尝试将该表达式解析为

  • b8ef73c7变量名,未定义。
  • - 减法运算符。
  • 2ef0 语法错误,它不是标识符(它以数字开头),也不是有效数字(因为 e 它会尝试将其解析为 double 以科学记数法表示,但它无效)。
  • ...

您必须使用引号:

TechData('b8ef73c7-2ef0-445e-8461-1e0508958a0e')

现在 NCalc 将正确解析此表达式,您的处理程序可能只是:

var techGuid = Guid.Parse((string)args.EvaluateParameters()[0]);