Missing semi-colon
Chapter 9: Lambda expressions and expression trees: P232, listing 9.3
Created: 2/17/2011
Last updated: 2/17/2011
Severity: Typo
The first line of listing 9.3 is this:
Func<string, int> returnLength
That's missing a semi-colon. It should actually be:
Func<string, int> returnLength;