I am trying to find a way to get the list of method calls inside a lambda expression in C# 3.5. For instance, in the code below, I would like to method LookAtThis(Action a)
static MethodInfo GetMethodInfo(Expression> expression) { return ((MethodCallExpression)expression.Body).Method; }