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
462 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 …
