Are there libraries that convert from Expression trees or CodeDOM to Reflection.Emit?
I found an interesting library that converts expression trees to CodeDOM. I 开发者_如何学Pythonam wondering if there are any libraries that convert from Expressions trees or CodeDOM objects to Reflection.Emit objects?
LambdaExpression.CompileToMethod may be what you're looking for? It can emit an expression tree to a MethodBuilder.
精彩评论