Resolve value in C#/.net 2.0
- by Andreas
Is there a way to resolve values in a class structure using some xpath-style resolver?
Exampel in code:
string name = Order.Customer.Firstname;
What i would like to do is something like this:
string name = (string)X.Resolve(Order, "Customer.Firstname");
Is there a way to do this in C#/.net 2.0