What are the limitations of Dynamic Language Runtime in .NET 4.0? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T10:07:00Z http://stackoverflow.com/feeds/question/1021296 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1021296/what-are-the-limitations-of-dynamic-language-runtime-in-net-4-0 5 What are the limitations of Dynamic Language Runtime in .NET 4.0? amazedsaint 2009-06-20T09:23:26Z 2009-06-20T17:24:29Z <p>I know that anonymous functions are not supported as arguments to a dynamic method call. What are other such limitations of DLR in .NET 4.0?</p> http://stackoverflow.com/questions/1021296/what-are-the-limitations-of-dynamic-language-runtime-in-net-4-0/1021307#1021307 9 Answer by Jon Skeet for What are the limitations of Dynamic Language Runtime in .NET 4.0? Jon Skeet 2009-06-20T09:32:54Z 2009-06-20T17:24:29Z <p>You <em>can</em> use anonymous functions, you just have to cast them first:</p> <pre><code>dynamic list = new List&lt;string&gt;() { "10", "20" }; dynamic converted = list.ConvertAll((Func&lt;string, int&gt;) (x =&gt; int.Parse(x))); </code></pre> <p>The same is true of method group conversions:</p> <pre><code>foo.Click += (EventHandler) MyClickHandler; </code></pre> <p>Other restrictions I've encountered so far:</p> <ul> <li>Static methods and constructors can't be dynamic in terms of the type, but <em>can</em> be dynamic in terms of the arguments</li> <li>You can't use <code>dynamic</code> in a type constraint</li> <li><p>You can't use <code>dynamic</code> as a type argument in an interface for a class declaration, but you <em>can</em> use it as a type argument for a base class, i.e.</p> <pre><code>class Invalid : IEnumerable&lt;dynamic&gt; class Valid : List&lt;dynamic&gt; </code></pre></li> <li><p>Extension methods aren't discoverable at execution time (but you can call the static method directly with dynamic arguments)</p></li> <li>There's a bug in 4.0b1 such that you can't convert from <code>dynamic[]</code> to <code>IEnumerable&lt;dynamic&gt;</code> - that will be fixed for the release.</li> <li>You can't use <code>dynamic</code> as a base class</li> </ul> <p>(Note that these are limitations of C# 4.0 as much as of the DLR itself. I got the impression that was what you meant though.)</p>