Lambda expressions with multiple parameters in C#

Func<intintint> avgFunc = (a, b) => (a + b)/2;
var avg = avgFunc(3, 5);
//avg is 4