如何将参数传递到表达式树中?
我正在为这样的表达式开发解析器:
a1 + a2 + a3 > 0 and b <> "" or c = "source"
我想在解析表达式时使用表达式树并收集参数(a1,a2..)。如何将参数传递到表达式树中?
编辑:我正在使用.net 4.0
I am developing the parser for expressions like this:
a1 + a2 + a3 > 0 and b <> "" or c = "source"
I want to use expression tree and collect parameters (a1, a2..) while parsing expression. How to pass parameters into an Expression tree?
Edit: I am using .net 4.0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其包装在采用您感兴趣的参数的 lambda 中。查看第二个示例: http://msdn.microsoft.com/en-us/library/bb397951.aspx
Wrap it in a lambda that takes the parameters you're interested in. Look at the second example on: http://msdn.microsoft.com/en-us/library/bb397951.aspx