Adding members to a dynamic object at runtime
If you only need to do that, you should look at ExpandoObject. If you need to do that and still use DynamicObject, you will need to write code to remember property values, basically… which you could potentially do with an embedded ExpandoObject. It’s not clear to me what you want to do with this object … Read more