0
votes
1answer
253 views
IDynamicObject implementation ignores multiple property invocations
I'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:
dynamic foo = new …
3
votes
3answers
395 views
Can I implement method_missing in C# 4 and have it actually return a value?
I was trying to figure out how to implement method_missing in C# 4, based on all of 2 blog posts floating around on IDynamicObject.
What I want to do is have a Business Logic Layer that has a …
3
votes
5answers
2k views
How do you implement C#4’s IDynamicObject interface?
To implement "method-missing"-semantics and such in C# 4.0, you have to implement IDynamicObject:
public interface IDynamicObject
{
MetaObject GetMetaObject(Expression parameter);
}
As far as I …
