First of all, I don't even know what to use when passing on 4 parameters but no return value, I'll just use Func as an example.
I do not want to use Dictionary.Add to insert my function, I want it to be inside while initializing the dictionary.
Dictionary<string, Func<int, int, int, int>> types = new Dictionary<string,
{"Linear", Func<int, int, int, int>> //idk how to write this part
{
code here
}}
For a
Func
like the one you have in your question, this should work:Note that you always need to have a
return
in your function.If you want something that does not have a return value, you shouldn't use a
Func
, but anAction
instead:Unlike functions, actions do not return anything.
Note the difference in meaning between
Action<int, int, int, int>
andFunc<int, int, int, int>
. In the former, the last int indicates the type of the 4th parameter, whereas in the latter it indicates the return type.