是否有从表达式树或 CodeDOM 转换为 Reflection.Emit 的库?
我发现了一个有趣的库,它将表达式树转换为 CodeDOM。我想知道是否有任何库可以从表达式树或 CodeDOM 对象转换为 Reflection.Emit 对象?
I found an interesting library that converts expression trees to CodeDOM. I am wondering if there are any libraries that convert from Expressions trees or CodeDOM objects to Reflection.Emit objects?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
LambdaExpression.CompileToMethod 可能是您正在寻找的?它可以将表达式树发送到 MethodBuilder。
LambdaExpression.CompileToMethod may be what you're looking for? It can emit an expression tree to a MethodBuilder.