This code:
func = CSScript.CreateFunc<int>(@"int f(int[] inputs) { return inputs.Max(); }");
int max = func(new int[]{ 235,123,675,111 });
is throwing:
error CS1061: 'System.Array' does not contain a definition for 'Max' and no extension method 'Max' accepting a first argument of type 'System.Array' could be found (are you missing a using directive or an assembly reference?)
I need to inject System.Linq
inside my function "func
"
....How can I do that?
This is from the CS-Script Documentation: