I'm trying to figure out how to put all the pieces together, and would appreciate a concrete source code sample for a simple case to start with....Consider the following C# code:...Func<int, int, int> f = (x, y) => x + y;
...I can produce an equivalent fu...