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\"
In .Net core 3.1 you can try like this
d?.value2 , d?.value3