How do you implement C#4's IDynamicObject interface? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T01:22:32Z http://stackoverflow.com/feeds/question/245975 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/245975/how-do-you-implement-c4s-idynamicobject-interface 3 How do you implement C#4's IDynamicObject interface? Rasmus Faber 2008-10-29T06:38:02Z 2008-11-04T00:33:23Z <p>To implement "method-missing"-semantics and such in C# 4.0, you have to implement IDynamicObject:</p> <pre><code>public interface IDynamicObject { MetaObject GetMetaObject(Expression parameter); } </code></pre> <p>As far as I can figure out IDynamicObject is actually part of the DLR, so it is not new. But I have not been able to find much documentation on it.</p> <p>There are some very simple example implementations out there (f.x. <a href="http://blogs.msdn.com/cburrows/archive/2008/10/28/c-dynamic-part-ii.aspx" rel="nofollow">here</a> and <a href="http://code.msdn.microsoft.com/csharpfuture/Release/ProjectReleases.aspx?ReleaseId=1686" rel="nofollow">here</a>), but could anyone point me to more complete implementations or some real documentation?</p> <p>Especially, how exactly are you supposed to handle the "parameter"-parameter?</p> http://stackoverflow.com/questions/245975/how-do-you-implement-c4s-idynamicobject-interface/246629#246629 0 Answer by Rasmus Faber for How do you implement C#4's IDynamicObject interface? Rasmus Faber 2008-10-29T12:39:25Z 2008-10-29T12:39:25Z <p>Here is what I have figured out so far:</p> <p>The Dynamic Language Runtime is currently maintained as part of the <a href="http://www.codeplex.com/IronPython" rel="nofollow">IronPython project</a>. So that is the best place to go for information.</p> <p>The easiest way to implement a class supporting IDynamicObject seems to be to derive from <a href="http://www.codeplex.com/IronPython/SourceControl/FileView.aspx?itemId=650479&amp;changeSetId=42603" rel="nofollow">Microsoft.Scripting.Actions.Dynamic</a> and override the relevant methods, for instance the Call-method to implement function call semantics. It looks like Microsoft.Scripting.Actions.Dynamic hasn't been included in the CTP, but the one from IronPython 2.0 looks like it will work.</p> <p>I am still unclear on the exact meaning of the "parameter"-parameter, but it seems to provide context for the binding of the dynamic-object.</p> http://stackoverflow.com/questions/245975/how-do-you-implement-c4s-idynamicobject-interface/246637#246637 0 Answer by Rasmus Faber for How do you implement C#4's IDynamicObject interface? Rasmus Faber 2008-10-29T12:41:26Z 2008-10-29T12:41:26Z <p>This presentation also provides a lot of information about the DLR:</p> <ul> <li><a href="http://channel9.msdn.com/pdc2008/TL10/" rel="nofollow">Deep Dive: Dynamic Languages in Microsoft .NET</a> by Jim Hugunin.</li> </ul> http://stackoverflow.com/questions/245975/how-do-you-implement-c4s-idynamicobject-interface/246693#246693 3 Answer by Curt Hagenlocher for How do you implement C#4's IDynamicObject interface? Curt Hagenlocher 2008-10-29T13:00:14Z 2008-10-29T13:00:14Z <p>The short answer is that the MetaObject is what's responsible for actually generating the code that will be run at the call site. The mechanism that it uses for this is LINQ expression trees, which have been enhanced in the DLR. So instead of starting with an object, it starts with an expression that represents the object, and ultimately it's going to need to return an expression tree that describes the action to be taken.</p> <p>When playing with this, please remember that the version of System.Core in the CTP was taken from a snapshot at the end of August. It doesn't correspond very cleanly to any particular beta of IronPython. A number of changes have been made to the DLR since then. </p> <p>Also, for compatibility with the CLR v2 System.Core, releases of IronPython starting with either beta 4 or beta 5 now rename everything in that's in the System namespace to be in the Microsoft namespace instead.</p> http://stackoverflow.com/questions/245975/how-do-you-implement-c4s-idynamicobject-interface/249697#249697 2 Answer by Mike Hadlow for How do you implement C#4's IDynamicObject interface? Mike Hadlow 2008-10-30T09:49:47Z 2008-10-30T09:49:47Z <p>I just blogged about how to do this here:</p> <p><a href="http://mikehadlow.blogspot.com/2008/10/dynamic-dispatch-in-c-40.html" rel="nofollow">http://mikehadlow.blogspot.com/2008/10/dynamic-dispatch-in-c-40.html</a></p> http://stackoverflow.com/questions/245975/how-do-you-implement-c4s-idynamicobject-interface/260440#260440 2 Answer by Tobias Hertkorn for How do you implement C#4's IDynamicObject interface? Tobias Hertkorn 2008-11-04T00:25:26Z 2008-11-04T00:33:23Z <p>If you want an end to end sample including source code, resulting in a dynamic object that stores value for arbitrary properties in a Dictionary then <a href="http://saftsack.fs.uni-bayreuth.de/~dun3/archives/first-look-ducktyping-c-4-0-idynamicobject-metaobject/202.html" rel="nofollow" title="A first look at Duck Typing in C# 4.0">my post "A first look at Duck Typing in C# 4.0"</a> could be right for you. I wrote that post to show how dynamic object can be cast to statically typed interfaces. It has a complete working implementation of a Duck that is a IDynamicObject and may acts like a IQuack.</p> <p>If you need more information contact me on my blog and I will help you along, as good as I can.</p>