I\'d like to access the value of a dynamic c# property with a string:
dynamic
dynamic d = new { value1 = \"some\", value2 = \"random\", value3 = \"value\"
d.GetType().GetProperty("value2")
returns a PropertyInfo object.
So then do
propertyInfo.GetValue(d)