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 ...
4
votes
2answers
491 views
DynamicObject implicit casting
I have a subclass of DynamicObject and I would like to implement implicit casting for primitive types similarly as DO's explicit casting method TryConvert; that is, without writing multiple implicit ...