Tagged Questions
5
votes
5answers
4k 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 ...