Search Results

4
votes
3answers
1k views

Lambda Expression Tree Parsing

Thanks in advance guys. I am trying to use Lambda Expressions in a project to map to a third party query API. So, I'm parsing the Expression tree by hand. if I pass in a lambda expr …
3
votes
2answers
1k views

How do I get the value of MemberInfo?

How do I get the value of a MemberInfo object? .Name returns the name of the variable, but I need the value. I think you can do this with FieldInfo but I don't have a snippet, if you know …
9
votes
2answers
450 views

Given a type ExpressionType.MemberAccess, how do i get the field value?

I am parsing an Expression Tree. Given a NodeType of ExpressionType.MemberAccess, how do I get the value of that Field? From C# MSDN docs: MemberAccess is A node that represents reading f …
5
votes

Given a type ExpressionType.MemberAccess, how do i get the field value?

thank you so so much to Marc Gravell above. I really appreciated his help. It turns out, in my case. the problem can be solved via: object value = Expression.Lambda(expBody …