What are the limitations of Dynamic Language Runtime in .NET 4.0? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T10:07:00Zhttp://stackoverflow.com/feeds/question/1021296http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1021296/what-are-the-limitations-of-dynamic-language-runtime-in-net-4-05What are the limitations of Dynamic Language Runtime in .NET 4.0?amazedsaint2009-06-20T09:23:26Z2009-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#10213079Answer by Jon Skeet for What are the limitations of Dynamic Language Runtime in .NET 4.0?Jon Skeet2009-06-20T09:32:54Z2009-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<string>() { "10", "20" };
dynamic converted = list.ConvertAll((Func<string, int>) (x => 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<dynamic>
class Valid : List<dynamic>
</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<dynamic></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>