The ...dynamic language runtime (DLR)... has some pretty cool code for Expression's, including some very nice code to print out Expression trees which I want to use so that:...int a = 1;
int b = 2;
Expression<Func<int, int>> expression = (c) => a + (b * ...