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
With c# 7.0 You can use like this also
Public string ParentMethod(int i, int x){ int calculation = (i*x); (string info, int result) InternalTuppleMethod(param1, param2) { var sum = (calculation + 5); return ("The calculation is", sum); } }