I would like to use a Dictionary> with a small modification. Where Func<> can take 1 or more parameters of type double.
I would have liked to do something like this
Dictionary<string, Func<params double, double>>
Basically I would like to be able to call functions that look like this.
double Function1(double value);
double Function2(double value1, double value2);
double Function3(double value1, double value2, double value3);
Thanks