Tagged Questions

16
votes
10answers
4k views

How do you use Func<> and Action<> when designing applications?

All the examples I can find about Func<> and Action<> are simple as in the one below where you see how they technically work but I would like to see them used in examples where they solve ...
2
votes
3answers
131 views

How to determine anonymous function parameters in c#?

Given the following code, public T Execute<T>(Func<T> methodParam) { return methodParam (); } public void CallMethodsAnonymously<T>() { T result ...