Tagged Questions

1
vote
1answer
3k views

Reflection - getting properties of nested objects

refers to : http://stackoverflow.com/questions/906327/reflection-setting-type-of-returned-obj I have a object Call Jobcard with a few properties, one of which is another object called Customer with ...
0
votes
2answers
81 views

How can I access an object's property from the PropertyInfo?

When I foreach through an object's properties and end up with a PropertyInfo, how can I access the actual property of the object? @foreach(var propertyInfo in Model.Entity.GetType().GetProperties()) ...