Is it possible to view the IL code generated when you call Compile() on an Expression tree? Consider this very simple example:
class Program
{
public int Value { get; set; }
static void Main(string[] args)
{
var param = Expression.Parameter(typeof(Program));
var con = Expression.Constant(5);
var prop = Expression.Property(param, typeof(Program).GetProperty("Value"));
var assign = Expression.Assign(prop, con);
Action<Program> lambda = Expression.Lambda<Action<Program>>(assign, param).Compile();
Program p = new Program();
lambda(p);
//p.Value = 5;
}
}
Now, the expression tree does what the last line of Main
says. Compile the application, then open it in Reflector. You can see the IL code of p.Value = 5;
that does the assignment. But the expression tree was made and compiled at runtime. Is it possible to view the resulting IL code from the compile?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…