Hi,
Is it possible to add constant vars when build a function? something like this:
var fn = calc.ParseFunction("a+b+c");
fn.Variables.Add("a",1);
fn.Variables.Add("b",1);
var compileFn = fn.Compile();
var result = compileFn(new Dictionary<string, double> { { "c", 2 } });
Or I need to interpolation constants variable before parse function?
tks