|
2 |
C# version normalization
|
||
|
1 |
|
||
IDynamicObject implementation ignores multiple property invocationsI've implemented IDynamicObject in C# 4, return a custom MetaObject subclass that does simple property getter/setter dispatch to a Dictionary. Not rocket science. If I do this:
Then 'Joe' is printed to the console... the second call to the 'Name' setter is never invoked (never steps into my custom dispatcher code at all). I know the DLR does callsite caching, but I assumed that wouldn't apply here. Anyone know what's going on?
|
||||
