I have a VB.NET function as follows:
Public Function Equilibrium(ParamArray F() As Func(Of Double, Double)) As Boolean
'I would like to define a function
' G(x) = sum of all F(x)
End Function
The parameters of the function are an array of functions F() that takes a double and returns a double. I would like to define a function G(x as Double) as Double inside the above function as the sum of all F(x), but what I've tried so far gave me syntax errors. Could anyone please help me? Greatly appreciated.
This seems to work, see if that is what you have thought of...