I have a function that has the following signature...
public string DoJunk(Expression<Func<bool>> expression)
I'm trying to find a way to convert the "expression" parameter back to something resembling the original source code (or at least a c# representation of the original souce code). So, if someone calls the function like this...
DoJunk(() => (i + j) * 9 == Math.Round((double)j / (i - 3), 4))
...I'd like to be able to convert the expression to this...
(i + j) * 9 == Math.Round((double)j / (i - 3), 4)
Has anyone done this?
See Question&Answers more detail:os