How do you get the Value of a property from PropertyInfo?
Unless the property is static, it is not enough to get a PropertyInfo object to get a value of a property. When you write “plain” C# and you need to get a value of some property, say, MyProperty, you write this: var val = obj.MyProperty; You supply two things – the property name (i.e. what … Read more