You are developing an application.
You need to declare a delegate for a method that accepts an integer as a parameter, and then
returns an integer.
Which type of delegate should you use?

A.
Action<int>
B.
Action<int, int>
C.
Func<int, int>
D.
Func<int>
c
0
0
@see http://www.tutorialsteacher.com/csharp/csharp-func-delegate
1
0