What is the runtime type of `body` after this code, and what does it represent?
using System;
using System.Linq.Expressions;
class P {
static void Main() {
Expression<Func<int,int,int>> e = (a, b) => a + b;
Expression body = e.Body;
// what is body?
}
}