Chapter 14 Lambda Expression as Delegates and Expression Trees
In this section, bottom of Pg 369, the last paragraph; "This expression can be represented...", concludes with a sentence that uses the last Try It Out (Ch14Ex06) as an example of where you could use the generic delegate types instead of the TwoIntegerOperationDelegate delegate. Not having any luck making this work. I've tried Google, Bing, and a Pluralsight training video but I'm just not seeing how to do this.
Has anyone done this that would be willing to help clue me in? Thanks in advance.
Last edited by TJinWI; July 11th, 2013 at 04:36 PM..
Reason: Solved problem myself, putting generic definition in wrong. "private static void PerformOperations(Func<int, int, int> del)"
|