Can a C# lambda expression include more than one statement?
(Edit: As referenced in several of the answers below, this question originally asked about \"lines\" rath
Func test = (name) => { if (name == "yes") return true; else return false; }