我必须使用 NCalc 计算字符串输入,但我想将它(结果)保存为字符串。我怎么做?
Expression expressionEv = new Expression(expressionProccessed);
string value = expressionEv.Evaluate ();
以下代码返回错误:
Error CS0266: Cannot implicitly convert type `object' to `string'. An explicit conversion exists (are you missing a cast?)
有没有办法将它转换为字符串?或者也许是其他方式?提前致谢!;)