I\'m looking for a way to modify properties on a dynamic C# 4.0 object with the name of the property known only at runtime.
dynamic
Is there a way to do something l
My open source framework Dynamitey has methods for invoking based on string names using the DLR. It does the work of caching binding sites and streamlines it down to one method call. it also runs faster than reflection on non-dynamic objects too.
Dynamic.InvokeSet(e, "TestKey", "value");