<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://bartdesmet.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>B# .NET Blog</title><link>http://bartdesmet.net/blogs/bart/default.aspx</link><description>Bart De Smet&amp;#39;s on-line blog (0x2B | ~0x2B, that&amp;#39;s the question)</description><dc:language>en</dc:language><generator>CommunityServer 2007 (Build: 20423.869)</generator><item><title>To Bind or Not To Bind – Dynamic Expression Trees – Part 3</title><link>http://bartdesmet.net/blogs/bart/archive/2008/08/28/to-bind-or-not-to-bind-dynamic-expression-trees-part-3.aspx</link><pubDate>Thu, 28 Aug 2008 17:35:00 GMT</pubDate><guid isPermaLink="false">863c5522-913f-4a64-ac0a-bd5f05abad0f:13925</guid><dc:creator>bart</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bartdesmet.net/blogs/bart/rsscomments.aspx?PostID=13925</wfw:commentRss><comments>http://bartdesmet.net/blogs/bart/archive/2008/08/28/to-bind-or-not-to-bind-dynamic-expression-trees-part-3.aspx#comments</comments><description>&lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;Last time in this series we were able to compile a stunningly complex “dynamic lambda” x =&amp;gt; x – also known as I in the world of combinators – into IL code at runtime. As that’s not particularly useful, we want to move on to slightly more complex expressions like:&lt;/p&gt;  &lt;blockquote&gt;   &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;var &lt;/span&gt;o = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Parameter(&lt;span style="color:#a31515;"&gt;&amp;quot;o&amp;quot;&lt;/span&gt;);
&lt;span style="color:blue;"&gt;var &lt;/span&gt;a = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Parameter(&lt;span style="color:#a31515;"&gt;&amp;quot;a&amp;quot;&lt;/span&gt;);
&lt;span style="color:blue;"&gt;var &lt;/span&gt;b = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Parameter(&lt;span style="color:#a31515;"&gt;&amp;quot;b&amp;quot;&lt;/span&gt;);
&lt;span style="color:blue;"&gt;var &lt;/span&gt;call = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Call(o, &lt;span style="color:#a31515;"&gt;&amp;quot;Substring&amp;quot;&lt;/span&gt;, a, b);
&lt;span style="color:blue;"&gt;var &lt;/span&gt;func = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Lambda(call, o, a, b);
&lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(func);
&lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(func.Compile().DynamicInvoke(&lt;span style="color:#a31515;"&gt;&amp;quot;Bart&amp;quot;&lt;/span&gt;, 1, 2));&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;

&lt;p&gt;Or, in pretty print,&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;(o, a, b) =&amp;gt; o.Substring(a, b)&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;h1&gt;Setting the scene&lt;/h1&gt;

&lt;p&gt;We explained how the translation of a dynamic expression tree takes place in general: as we traverse the tree, individual nodes are visited asking them to append code capturing the expression’s semantics to an IL stream, pushing a value on the stack that corresponds to the evaluated expression. The method that does this translation for every dynamic expression is called “Compile”:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:gray;"&gt;/// &amp;lt;summary&amp;gt;
/// &lt;/span&gt;&lt;span style="color:green;"&gt;Appends IL instructions to calculate the expression&amp;#39;s runtime value, putting it on top of the evaluation stack.
&lt;/span&gt;&lt;span style="color:gray;"&gt;/// &amp;lt;/summary&amp;gt;
/// &amp;lt;param name=&amp;quot;ilgen&amp;quot;&amp;gt;&lt;/span&gt;&lt;span style="color:green;"&gt;IL generator to append to.&lt;/span&gt;&lt;span style="color:gray;"&gt;&amp;lt;/param&amp;gt;
/// &amp;lt;param name=&amp;quot;ldArgs&amp;quot;&amp;gt;&lt;/span&gt;&lt;span style="color:green;"&gt;Lambda argument mappings.&lt;/span&gt;&lt;span style="color:gray;"&gt;&amp;lt;/param&amp;gt;
&lt;/span&gt;&lt;span style="color:blue;"&gt;protected internal abstract void &lt;/span&gt;Compile(&lt;span style="color:#2b91af;"&gt;ILGenerator &lt;/span&gt;ilgen, &lt;span style="color:#2b91af;"&gt;Dictionary&lt;/span&gt;&amp;lt;&lt;span style="color:#2b91af;"&gt;ParameterDynamicExpression&lt;/span&gt;, &lt;span style="color:blue;"&gt;int&lt;/span&gt;&amp;gt; ldArgs);&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;

&lt;p&gt;In here we’re using a simplified concept of “lambda parameters in scope” using &lt;em&gt;ldArgs&lt;/em&gt;, avoiding getting into slightly more complex techniques such as hoisting that are required for more involved expression trees. Previously you saw how to implement this method for ParameterDynamicExpression and LambdaDynamicExpression, respectively:&lt;/p&gt;

&lt;blockquote&gt;&lt;/blockquote&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;protected internal override void &lt;/span&gt;Compile(&lt;span style="color:#2b91af;"&gt;ILGenerator &lt;/span&gt;ilgen, &lt;span style="color:#2b91af;"&gt;Dictionary&lt;/span&gt;&amp;lt;&lt;span style="color:#2b91af;"&gt;ParameterDynamicExpression&lt;/span&gt;, &lt;span style="color:blue;"&gt;int&lt;/span&gt;&amp;gt; ldArgs)
{
    &lt;span style="color:blue;"&gt;if &lt;/span&gt;(!ldArgs.ContainsKey(&lt;span style="color:blue;"&gt;this&lt;/span&gt;))
        &lt;span style="color:blue;"&gt;throw new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;InvalidOperationException&lt;/span&gt;(&lt;span style="color:#a31515;"&gt;&amp;quot;Parameter expression &amp;quot; &lt;/span&gt;+ Name + &lt;span style="color:#a31515;"&gt;&amp;quot; is not in scope.&amp;quot;&lt;/span&gt;);

    ilgen.Emit(&lt;span style="color:#2b91af;"&gt;OpCodes&lt;/span&gt;.Ldarg, ldArgs[&lt;span style="color:blue;"&gt;this&lt;/span&gt;]);
}&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;and&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;protected internal override void &lt;/span&gt;Compile(&lt;span style="color:#2b91af;"&gt;ILGenerator &lt;/span&gt;ilgen, &lt;span style="color:#2b91af;"&gt;Dictionary&lt;/span&gt;&amp;lt;&lt;span style="color:#2b91af;"&gt;ParameterDynamicExpression&lt;/span&gt;, &lt;span style="color:blue;"&gt;int&lt;/span&gt;&amp;gt; ldArgs)
{
    Body.Compile(ilgen, ldArgs);
    ilgen.Emit(&lt;span style="color:#2b91af;"&gt;OpCodes&lt;/span&gt;.Ret);
}&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;h1&gt;Dynamic method calls and binders&lt;/h1&gt;

&lt;p&gt;For MethodCallExpression things are a bit more involved than for the expression types above. Before we start, remember the most important portion of the Compile method contract: leave one value on top of the stack that corresponds to the evaluated expression, in this case a method call. What does a method call consist of? Here are the ingredients:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;public &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;ReadOnlyCollection&lt;/span&gt;&amp;lt;&lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;&amp;gt; Arguments { &lt;span style="color:blue;"&gt;get&lt;/span&gt;; &lt;span style="color:blue;"&gt;private set&lt;/span&gt;; }
&lt;span style="color:blue;"&gt;public &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;DynamicExpression &lt;/span&gt;Object { &lt;span style="color:blue;"&gt;get&lt;/span&gt;; &lt;span style="color:blue;"&gt;private set&lt;/span&gt;; }
&lt;span style="color:blue;"&gt;public string &lt;/span&gt;Method { &lt;span style="color:blue;"&gt;get&lt;/span&gt;; &lt;span style="color:blue;"&gt;private set&lt;/span&gt;; }&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;As we’re seeing other DynamicExpression objects being referenced in here, it’s already clear we’ll have to evaluate those by recursively calling Compile. So, we could do something along the lines of:&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;compile Object 
    &lt;br /&gt;foreach argument in Arguments 

    &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; compile argument 

    &lt;br /&gt;call Method&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That’s the typical structure of a call site, pushing arguments on the stack including the object to invoke the method on. From a stack point of view: n + 1 arguments are pushed, where n is the number of arguments and 1 accounts for the instance to invoke the method one, and next all of those stack citizens are eaten by the method call, producing the single return value on top of the stack. This follows the contract of our Compile method.&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;There’s a slight problem though: we can’t emit the call because we don’t know what type to invoke it one. The reason is well-known in the meantime: the Object nor the Arguments have strongly-typed information, so just given a string named “Method”, we can’t get the required method metadata to emit a call(virt) instruction. Bummer. But that’s the whole point of dynamic programming, delaying the decision about the executed method/function till runtime because the type might dynamically grow with new members (think of ETS in PowerShell as a sample of such a capability).&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;One way to solve this problem is to emit a bunch of reflection code to investigate the type of Object at runtime, do the same for all of the arguments, try to find a suitable method to call, etc etc. I shouldn’t explain how complicated this would become :-). There are lots of drawbacks to this: we’re baking in the whole dynamic call infrastructure into the call site and as we’re emitting all of that code, the odds to adapt it without having to recompile the code are off. This whole “locate a suitable method” algorithm could be made extensible too if we’re not emitting it into the generated code straight away. In other words, we want to get out of the IL generating business as soon as we can, and introduce a level of indirection. That particular kind of indirection is what we call a &lt;strong&gt;binder&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;So what’s a binder precisely? It’s simply a class that contains all the functionality to make well-formed decisions (based on certain desired semantics) about method calls (amongst other invocation mechanisms). Actually we have such a thing in the framework already: &lt;a href="http://msdn.microsoft.com/en-us/library/system.reflection.binder.aspx"&gt;System.Reflection.Binder&lt;/a&gt;. As the documentation says:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;em&gt;Selects a member from a list of candidates, and performs type conversion from actual argument type to formal argument type.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The list of candidates is something that can be made extensible, allowing methods to be “imported” or “attached” to existing types at runtime. The type conversion clause in the sentence above outlines that the binder is responsible to take the actual passed in arguments (in our case weakly typed) and turn them into (i.e. casting) formal argument types that are suitable for consumption by the selected candidate method. The sample on MSDN for &lt;a href="http://msdn.microsoft.com/en-us/library/system.reflection.binder.aspx"&gt;System.Reflection.Binder&lt;/a&gt; shows what it takes to implement such a beast. We’re not going to do that though, just to simplify matters a bit. As we’re only interested in method calls, we’ll just implement the bare minimum binder to get the job done and explained. Furthermore, we won’t spend time on implicit conversions for built-in types (like int to long) as the mentioned sample illustrates that already. Last but not least, generics are not brought in the equation either.&lt;/p&gt;

&lt;p&gt;Without further delay, let’s show a possible binder implementation:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;public class &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;DynamicBinder
&lt;/span&gt;{
    &lt;span style="color:blue;"&gt;public static object &lt;/span&gt;Call(&lt;span style="color:blue;"&gt;object &lt;/span&gt;@this, &lt;span style="color:blue;"&gt;string &lt;/span&gt;methodName, &lt;span style="color:blue;"&gt;params object&lt;/span&gt;[] args)
    {
        &lt;span style="color:green;"&gt;//
        // Here we&amp;#39;re going to be lazy for demo purposes only. Our overload resolution
        // will pick the first applicable method without applying &amp;quot;betterness&amp;quot; rules
        // as outlined in the C# specification (v2.0, section $7.4.2). We don&amp;#39;t care
        // about extension methods either (how could the namespace be brought in scope
        // in the context of an expression tree...?) nor other dynamic type extensions
        // such as IExpando (~ IMarshalEx) or e.g. PowerShell ETS.
        //

        &lt;/span&gt;&lt;span style="color:blue;"&gt;var &lt;/span&gt;result = (&lt;span style="color:blue;"&gt;from &lt;/span&gt;method &lt;span style="color:blue;"&gt;in &lt;/span&gt;@this.GetType().GetMethods()
                      &lt;span style="color:blue;"&gt;where &lt;/span&gt;method.Name == methodName
                      &lt;span style="color:blue;"&gt;let &lt;/span&gt;parameters = method.GetParameters()
                      &lt;span style="color:blue;"&gt;where &lt;/span&gt;parameters.Length == args.Length
                            &amp;amp;&amp;amp; parameters.Where((p, i) =&amp;gt; p.ParameterType.IsAssignableFrom(args[i].GetType())).Count() == args.Length
                      &lt;span style="color:blue;"&gt;select new &lt;/span&gt;{ Method = method, Parameters = parameters }).SingleOrDefault();

        &lt;span style="color:blue;"&gt;if &lt;/span&gt;(result == &lt;span style="color:blue;"&gt;null&lt;/span&gt;)
        {
            &lt;span style="color:#2b91af;"&gt;StringBuilder &lt;/span&gt;sb = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;StringBuilder&lt;/span&gt;();
            sb.Append(&lt;span style="color:#a31515;"&gt;&amp;quot;Failed to bind method call: &amp;quot;&lt;/span&gt;);
            sb.Append(@this.GetType());
            sb.Append(&lt;span style="color:#a31515;"&gt;&amp;quot;.&amp;quot;&lt;/span&gt;);
            sb.Append(methodName);
            sb.Append(&lt;span style="color:#a31515;"&gt;&amp;quot;(&amp;quot;&lt;/span&gt;);

            &lt;span style="color:blue;"&gt;int &lt;/span&gt;n = args.Length;
            &lt;span style="color:blue;"&gt;for &lt;/span&gt;(&lt;span style="color:blue;"&gt;int &lt;/span&gt;i = 0; i &amp;lt; n; i++)
                sb.Append(args[i].GetType().ToString() + (i != n - 1 ? &lt;span style="color:#a31515;"&gt;&amp;quot;, &amp;quot; &lt;/span&gt;: &lt;span style="color:#a31515;"&gt;&amp;quot;&amp;quot;&lt;/span&gt;));

            sb.Append(&lt;span style="color:#a31515;"&gt;&amp;quot;).&amp;quot;&lt;/span&gt;);
            &lt;span style="color:blue;"&gt;throw new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;InvalidOperationException&lt;/span&gt;(sb.ToString());
        }

        &lt;span style="color:blue;"&gt;return &lt;/span&gt;result.Method.Invoke(@this, args);
    }
}&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;This needs some explanation I assume. The signature should be straightforward: given an object &lt;em&gt;@this&lt;/em&gt;, we want to call method &lt;em&gt;methodName&lt;/em&gt; with zero or more arguments &lt;em&gt;args&lt;/em&gt;. The result of this will be an &lt;em&gt;object&lt;/em&gt; again (notice we don’t support void return types for methods being called, which isn’t too big of deal when considering &lt;em&gt;functions&lt;/em&gt; as lambdas – i.e. no statement lambdas). What’s more interesting though is the way we find a suitable method. I chose to write it as a gigantic LINQ expression just to show how powerful LINQ can be. Let me walk you through it:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;var &lt;/span&gt;result = (&lt;span style="color:blue;"&gt;from &lt;/span&gt;method &lt;span style="color:blue;"&gt;in &lt;/span&gt;@this.GetType().GetMethods()
              &lt;span style="color:blue;"&gt;where &lt;/span&gt;method.Name == methodName
              &lt;span style="color:blue;"&gt;let &lt;/span&gt;parameters = method.GetParameters()&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;For all methods available on the left-hand side of the call (i.e. &lt;em&gt;@this&lt;/em&gt;) select those methods that have the same name (case sensitive compare – this would be a binder that mimics C# name resolution for method calls) and let &lt;em&gt;parameters&lt;/em&gt; be a variable containing the parameters for each of the selected methods going forward. In other words, in what follows we’re seeing a sequence of &lt;em&gt;(method, parameters)&lt;/em&gt; pairs mapping each suitable (at least concerning the name) method on the parameters it takes. Next we need to do overload resolution:&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;              where &lt;/span&gt;parameters.Length == args.Length&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;Here we make sure the number of arguments on the candidate method matches the number of arguments passed in to the binder’s Call call. This implies we don’t consider things like optional arguments supported by some languages which would mean that having less matching parameters (but not more!) would keep the method as a candidate, although there would need to be some ordering to make sure that methods with more arguments take precedence over methods with arguments supplied through optional values. Notice this simple check makes it also impossible to call a “params” method without stiffing the argument in an array upfront.&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;                    &amp;amp;&amp;amp; parameters.Where((p, i) =&amp;gt; p.ParameterType.IsAssignableFrom(args[i].GetType())).Count() == args.Length&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;Now we’re in the clause that’s maybe the most interesting. Here we’re taking all the parameters of the candidate and check that the parameter &lt;em&gt;p &lt;/em&gt;on position &lt;em&gt;i&lt;/em&gt; has a type that’s assignable from the type of the argument passed in to the binder’s Call method. In essence this is &lt;em&gt;contravariance&lt;/em&gt; for arguments. Assume we’re examining a candidate method like this:&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;class ExperimentalZoo 
    &lt;br /&gt;{ 

    &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; Animal CloneBeast(Mammal g); 

    &lt;br /&gt;}&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;and we’re calling the binder as follows:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;DynamicBinder.Call(new ExperimentalZoo(), “CloneBeast”, new Giraffe())&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;As we’re calling the binder with an argument of type Giraffe (args[0].GetType()) and Giraffe inherits from Mammal (parameters[i].ParameterType), the candidate is compatible. However, if we’d call the method with an argument of type Goldfish it would clearly not be compatible (as a fish is not a mammal). This is precisely what the Where clause above enforces. The Count() == args.Length trick at the end makes sure all of the arguments pass the test (using the All operator would be ideal but it hasn’t an overload passing in the index; alternatively a Zip operator would be beneficial too).&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;Finally we have the select clause:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;              select new &lt;/span&gt;{ Method = method, Parameters = parameters }).SingleOrDefault();&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;which simply extracts the method (of type MethodInfo) and the parameters (of type ParameterInfo[]) and makes sure we only found one match. This is another simplification for illustrative purposes only – to be fully compliant with e.g. the C# language, we’d have to implement all of the overload resolution rules including “betterness rules” that select the most optimal overload. More information on this can be found in the C# specification, in v3.0 under “7.4.3 Overload Resolution”. The key takeaway though is that we can tweak this binder as much as we want (e.g., left as an exercise, we could implement resolution that takes extension methods into account) without affecting the generated IL code that will simply call into the binder’s Call method.&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;If we find one result, we can just go ahead and call it by calling through the retrieved Method using the Invoke method, passing in the &lt;em&gt;@this&lt;/em&gt; pointer and the &lt;em&gt;args&lt;/em&gt; array.&lt;/p&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;h1&gt;Connecting the pieces&lt;/h1&gt;

&lt;p&gt;Now that we have our beloved binder, we need to glue it together with our dynamic expression compilation. In concrete terms this means we need to emit a call to DynamicBinder.Call in the generated IL for the DynamicCallExpression. This isn’t too hard either:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;protected internal override void &lt;/span&gt;Compile(&lt;span style="color:#2b91af;"&gt;ILGenerator &lt;/span&gt;ilgen, &lt;span style="color:#2b91af;"&gt;Dictionary&lt;/span&gt;&amp;lt;&lt;span style="color:#2b91af;"&gt;ParameterDynamicExpression&lt;/span&gt;, &lt;span style="color:blue;"&gt;int&lt;/span&gt;&amp;gt; ldArgs)
{
    &lt;span style="color:blue;"&gt;if &lt;/span&gt;(Object == &lt;span style="color:blue;"&gt;null&lt;/span&gt;)
        ilgen.Emit(&lt;span style="color:#2b91af;"&gt;OpCodes&lt;/span&gt;.Ldnull);
    &lt;span style="color:blue;"&gt;else
        &lt;/span&gt;Object.Compile(ilgen, ldArgs);

    ilgen.Emit(&lt;span style="color:#2b91af;"&gt;OpCodes&lt;/span&gt;.Ldstr, Method);

    ilgen.Emit(&lt;span style="color:#2b91af;"&gt;OpCodes&lt;/span&gt;.Ldc_I4, Arguments.Count);
    ilgen.Emit(&lt;span style="color:#2b91af;"&gt;OpCodes&lt;/span&gt;.Newarr, &lt;span style="color:blue;"&gt;typeof&lt;/span&gt;(&lt;span style="color:blue;"&gt;object&lt;/span&gt;));

    &lt;span style="color:#2b91af;"&gt;LocalBuilder &lt;/span&gt;arr = ilgen.DeclareLocal(&lt;span style="color:blue;"&gt;typeof&lt;/span&gt;(&lt;span style="color:blue;"&gt;object&lt;/span&gt;[]));
    ilgen.Emit(&lt;span style="color:#2b91af;"&gt;OpCodes&lt;/span&gt;.Stloc, arr);

    &lt;span style="color:blue;"&gt;int &lt;/span&gt;i = 0;
    &lt;span style="color:blue;"&gt;foreach &lt;/span&gt;(&lt;span style="color:#2b91af;"&gt;DynamicExpression &lt;/span&gt;arg &lt;span style="color:blue;"&gt;in &lt;/span&gt;Arguments)
    {
        ilgen.Emit(&lt;span style="color:#2b91af;"&gt;OpCodes&lt;/span&gt;.Ldloc, arr);
        ilgen.Emit(&lt;span style="color:#2b91af;"&gt;OpCodes&lt;/span&gt;.Ldc_I4, i++);
        arg.Compile(ilgen, ldArgs);
        ilgen.Emit(&lt;span style="color:#2b91af;"&gt;OpCodes&lt;/span&gt;.Stelem_Ref);
    }

    ilgen.Emit(&lt;span style="color:#2b91af;"&gt;OpCodes&lt;/span&gt;.Ldloc, arr);

    ilgen.EmitCall(&lt;span style="color:#2b91af;"&gt;OpCodes&lt;/span&gt;.Call, &lt;span style="color:blue;"&gt;typeof&lt;/span&gt;(&lt;span style="color:#2b91af;"&gt;DynamicBinder&lt;/span&gt;).GetMethod(&lt;span style="color:#a31515;"&gt;&amp;quot;Call&amp;quot;&lt;/span&gt;), &lt;span style="color:blue;"&gt;null&lt;/span&gt;);
}&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;What’s going on here? First, we check whether an Object has been specified. This is more of an extensibility point in case our binder would like to implement &lt;em&gt;global functions&lt;/em&gt; (also left as an exercise, for example you could recognize null.Add(1, 2) as a global Add call, translating into Math.Add(…); or, the Method property could be set to “Math.Add” to denote a static method call). We’ll assume the else case holds true for our samples, causing us to call Compile recursively on the Object dynamic expression. This will add the value corresponding to the Object expression tree’s evaluation on top of the stack (note: you can smell call-by-value semantics already, don’t you?). Next, we load the string specified in the Method property onto the stack as well. Currently the stack looks like:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;(string) Method 
    &lt;br /&gt;(object) Object.Compile result&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Now we get into interesting stuff as our binder’s Call method expects to see an object[] as its third parameter. How many arguments? On for each of the DynamicExpression objects in the Arguments collection, so we do &lt;em&gt;Newarr&lt;/em&gt; passing in the object type &lt;em&gt;object&lt;/em&gt; after pushing the number of elements to be allocated on the stack using &lt;em&gt;Ldc_I4&lt;/em&gt; passing in Arguments.Count. Now we have our array, we can store it in a local variable we call “arr”. Time to fill the array by first loading the local, then pushing the index followed by a push of the argument’s value – again obtained by a recursive Compile call on the argument “arg” – and finally calling &lt;em&gt;stelem_ref&lt;/em&gt; (as we’re dealing with System.Object we need _ref). The loop invariant is that it doesn’t change the stack height: it cleanly loads three “arguments” to stelem_ref which brings the stack delta back to 0).&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;Ultimately, we load the array local variable and the stack looks like (semantically):&lt;/p&gt;

&lt;blockquote&gt;(object[]) Arguments.Select(arg =&amp;gt; arg.Compile()).ToArray() 
  &lt;br /&gt;(string) Method 

  &lt;br /&gt;(object) Object.Compile()&lt;/blockquote&gt;

&lt;p&gt;ready for a call to DynamicBinder.Call which turns the stack into:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;(object) DynamicBinder.Call(Object.Compile(), Method, Arguments.Select(arg =&amp;gt; arg.Compile()).ToArray())&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Again, we have managed to keep the house clean with regards to the stack behavior, i.e. the element on top of the stack contains the value corresponding to the entire (MethodCall)DynamicExpression.&lt;/p&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;h1&gt;Testing it&lt;/h1&gt;

&lt;p&gt;Does it work? Let’s try with our running sample:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;var &lt;/span&gt;o = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Parameter(&lt;span style="color:#a31515;"&gt;&amp;quot;o&amp;quot;&lt;/span&gt;);
&lt;span style="color:blue;"&gt;var &lt;/span&gt;a = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Parameter(&lt;span style="color:#a31515;"&gt;&amp;quot;a&amp;quot;&lt;/span&gt;);
&lt;span style="color:blue;"&gt;var &lt;/span&gt;b = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Parameter(&lt;span style="color:#a31515;"&gt;&amp;quot;b&amp;quot;&lt;/span&gt;);
&lt;span style="color:blue;"&gt;var &lt;/span&gt;call = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Call(o, &lt;span style="color:#a31515;"&gt;&amp;quot;Substring&amp;quot;&lt;/span&gt;, a, b);
&lt;span style="color:blue;"&gt;var &lt;/span&gt;func = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Lambda(call, o, a, b);
&lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(func);
&lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(func.Compile().DynamicInvoke(&lt;span style="color:#a31515;"&gt;&amp;quot;Bart&amp;quot;&lt;/span&gt;, 1, 2));&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;Recognize the patterns in the output IL?&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;a href="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_167A/image.png"&gt;&lt;img title="image" style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;" height="602" alt="image" src="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_167A/image_thumb.png" width="914" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;A quick walk-through:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;IL_0000 loads MethodCallDynamicExpression.Object which in turn was compiled into a ldarg V_0 by the ParameterDynamicExpression’s Compile method (this corresponds to “o”) &lt;/li&gt;

  &lt;li&gt;IL_0006 loads MethodCallDynamicExpression.Method &lt;/li&gt;

  &lt;li&gt;IL_000b to IL_0015 prepares the array for the method call arguments to be passed to the binder &lt;/li&gt;

  &lt;li&gt;IL_0016 to IL_0022 puts the first argument (corresponding to “a” translated into ldarg V_1 through ParameterDynamicExpression.Compile) in the array &lt;/li&gt;

  &lt;li&gt;IL_0023 to IL_002f does the same for the second argument (corresponding to “b” translated into ldarg V_2 through ParameterDynamicExpression.Compile) &lt;/li&gt;

  &lt;li&gt;IL_0030 to IL_0036 finally makes the call through the binder, passing in the results of the above and returning the value produced by the binder &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If we now set a breakpoint in the DynamicBinder.Call method and let execution continue, we’ll see:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;a href="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_167A/image_3.png"&gt;&lt;img title="image" style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;" height="361" alt="image" src="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_167A/image_thumb_3.png" width="864" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The third line in the Call Stack is where DynamicInvoke is happening:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(func.Compile().&lt;strong&gt;&lt;u&gt;DynamicInvoke&lt;/u&gt;(&lt;span style="color:#a31515;"&gt;&amp;quot;Bart&amp;quot;&lt;/span&gt;, 1, 2)&lt;/strong&gt;);&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;and through the “External Code” corresponding to our emitted dynamic method we got back into the DynamicBinder that now will pick the right Substring method given lhs “Bart” and arguments 1 and 2. Ultimately the following prints to the screen:&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;a href="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_167A/image_4.png"&gt;&lt;img title="image" style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;" height="64" alt="image" src="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_167A/image_thumb_4.png" width="271" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Magic. To show it’s really extensible we can start to compose things endlessly with our two main ingredients: parameter and method call expressions. Here’s a sample (reverse engineering the nested DynamicExpression factory calls is left as an exercise):&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;a href="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_167A/image_5.png"&gt;&lt;img title="image" style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;" height="71" alt="image" src="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_167A/image_thumb_5.png" width="824" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Also left as an exercise to the reader is to find values for o and a through h that produce the displayed output above :-). For the record, here’s the corresponding IL:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;IL_0000: ldarg&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; V_0 
    &lt;br /&gt;IL_0004: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0005: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0006: ldstr&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;quot;Replace&amp;quot; 

    &lt;br /&gt;IL_000b: ldc.i4&amp;#160;&amp;#160;&amp;#160;&amp;#160; 2 

    &lt;br /&gt;IL_0010: newarr&amp;#160;&amp;#160;&amp;#160;&amp;#160; Object 

    &lt;br /&gt;IL_0015: stloc.0&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0016: ldloc.0&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0017: ldc.i4&amp;#160;&amp;#160;&amp;#160;&amp;#160; 0 

    &lt;br /&gt;IL_001c: ldarg&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; V_3 

    &lt;br /&gt;IL_0020: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0021: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0022: stelem.ref 

    &lt;br /&gt;IL_0023: ldloc.0&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0024: ldc.i4&amp;#160;&amp;#160;&amp;#160;&amp;#160; 1 

    &lt;br /&gt;IL_0029: ldarg&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; V_4 

    &lt;br /&gt;IL_002d: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_002e: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_002f: stelem.ref 

    &lt;br /&gt;IL_0030: ldloc.0&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0031: call&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; System.Object Call(System.Object, System.String, System.Object[])/BinderFun.DynamicBinder 

    &lt;br /&gt;IL_0036: ldstr&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;quot;Substring&amp;quot; 

    &lt;br /&gt;IL_003b: ldc.i4&amp;#160;&amp;#160;&amp;#160;&amp;#160; 2 

    &lt;br /&gt;IL_0040: newarr&amp;#160;&amp;#160;&amp;#160;&amp;#160; Object 

    &lt;br /&gt;IL_0045: stloc.1&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0046: ldloc.1&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0047: ldc.i4&amp;#160;&amp;#160;&amp;#160;&amp;#160; 0 

    &lt;br /&gt;IL_004c: ldarg&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; V_1 

    &lt;br /&gt;IL_0050: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0051: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0052: stelem.ref 

    &lt;br /&gt;IL_0053: ldloc.1&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0054: ldc.i4&amp;#160;&amp;#160;&amp;#160;&amp;#160; 1 

    &lt;br /&gt;IL_0059: ldarg&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; V_2 

    &lt;br /&gt;IL_005d: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_005e: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_005f: stelem.ref 

    &lt;br /&gt;IL_0060: ldloc.1&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0061: call&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; System.Object Call(System.Object, System.String, System.Object[])/BinderFun.DynamicBinder 

    &lt;br /&gt;IL_0066: ldstr&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;quot;Replace&amp;quot; 

    &lt;br /&gt;IL_006b: ldc.i4&amp;#160;&amp;#160;&amp;#160;&amp;#160; 2 

    &lt;br /&gt;IL_0070: newarr&amp;#160;&amp;#160;&amp;#160;&amp;#160; Object 

    &lt;br /&gt;IL_0075: stloc.2&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0076: ldloc.2&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0077: ldc.i4&amp;#160;&amp;#160;&amp;#160;&amp;#160; 0 

    &lt;br /&gt;IL_007c: ldarg&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; V_5 

    &lt;br /&gt;IL_0080: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0081: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0082: stelem.ref 

    &lt;br /&gt;IL_0083: ldloc.2&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0084: ldc.i4&amp;#160;&amp;#160;&amp;#160;&amp;#160; 1 

    &lt;br /&gt;IL_0089: ldarg&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; V_6 

    &lt;br /&gt;IL_008d: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_008e: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_008f: stelem.ref 

    &lt;br /&gt;IL_0090: ldloc.2&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_0091: call&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; System.Object Call(System.Object, System.String, System.Object[])/BinderFun.DynamicBinder 

    &lt;br /&gt;IL_0096: ldstr&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;quot;PadRight&amp;quot; 

    &lt;br /&gt;IL_009b: ldc.i4&amp;#160;&amp;#160;&amp;#160;&amp;#160; 2 

    &lt;br /&gt;IL_00a0: newarr&amp;#160;&amp;#160;&amp;#160;&amp;#160; Object 

    &lt;br /&gt;IL_00a5: stloc.3&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_00a6: ldloc.3&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_00a7: ldc.i4&amp;#160;&amp;#160;&amp;#160;&amp;#160; 0 

    &lt;br /&gt;IL_00ac: ldarg&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; V_7 

    &lt;br /&gt;IL_00b0: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_00b1: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_00b2: stelem.ref 

    &lt;br /&gt;IL_00b3: ldloc.3&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_00b4: ldc.i4&amp;#160;&amp;#160;&amp;#160;&amp;#160; 1 

    &lt;br /&gt;IL_00b9: ldarg&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; V_8 

    &lt;br /&gt;IL_00bd: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_00be: nop&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_00bf: stelem.ref 

    &lt;br /&gt;IL_00c0: ldloc.3&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;IL_00c1: call&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; System.Object Call(System.Object, System.String, System.Object[])/BinderFun.DynamicBinder 

    &lt;br /&gt;IL_00c6: ldstr&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;quot;ToUpper&amp;quot; 

    &lt;br /&gt;IL_00cb: ldc.i4&amp;#160;&amp;#160;&amp;#160;&amp;#160; 0 

    &lt;br /&gt;IL_00d0: newarr&amp;#160;&amp;#160;&amp;#160;&amp;#160; Object 

    &lt;br /&gt;IL_00d5: stloc.s&amp;#160;&amp;#160;&amp;#160; V_4 

    &lt;br /&gt;IL_00d7: ldloc.s&amp;#160;&amp;#160;&amp;#160; V_4 

    &lt;br /&gt;IL_00d9: call&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; System.Object Call(System.Object, System.String, System.Object[])/BinderFun.DynamicBinder 

    &lt;br /&gt;IL_00de: ret&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Enjoy! Next time … who knows what?&lt;/p&gt;&lt;img src="http://bartdesmet.net/aggbug.aspx?PostID=13925" width="1" height="1"&gt;</description><category domain="http://bartdesmet.net/blogs/bart/archive/tags/C_2300_+3.0/default.aspx">C# 3.0</category><category domain="http://bartdesmet.net/blogs/bart/archive/tags/Dynamic+languages/default.aspx">Dynamic languages</category></item><item><title>To Bind or Not To Bind – Dynamic Expression Trees – Part 2</title><link>http://bartdesmet.net/blogs/bart/archive/2008/08/27/to-bind-or-not-to-bind-dynamic-expression-trees-part-2.aspx</link><pubDate>Wed, 27 Aug 2008 23:05:00 GMT</pubDate><guid isPermaLink="false">863c5522-913f-4a64-ac0a-bd5f05abad0f:13917</guid><dc:creator>bart</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bartdesmet.net/blogs/bart/rsscomments.aspx?PostID=13917</wfw:commentRss><comments>http://bartdesmet.net/blogs/bart/archive/2008/08/27/to-bind-or-not-to-bind-dynamic-expression-trees-part-2.aspx#comments</comments><description>&lt;p&gt;&lt;/p&gt;  &lt;p&gt;Welcome back to the dynamic expression tree fun. Last time we designed our simplified expression tree class library we’ll be using to enable dynamic treatment of objects. Today, we’ll take this one step further by emitting IL code that resolves the operations invoked on such dynamic objects &lt;u&gt;at runtime&lt;/u&gt; through a mechanism called binders. Before we dive in, let me point out that everything discussed in this series is greatly simplified just to illustrate the core ideas and base mechanisms/principles that make dynamic language stuff work.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;h1&gt;Introducing IL generation&lt;/h1&gt;  &lt;p&gt;Dynamic code compilation is a wonderful thing. It’s not that hard once you get the basics right (and have some level of IL opcode understanding) but quite hard to debug. Luckily we have tools like &lt;a href="http://blogs.msdn.com/haibo_luo/archive/2008/03/07/8107924.aspx"&gt;Haibo Luo’s IL Visualizer&lt;/a&gt;. Since I’ll be using this, download it, extract the ZIP file, compile the whole solution and copy ILMonitor\bin\Debug\*.dll to %programfiles%\Microsoft Visual Studio 9.0\Common7\Packages\Debugger\Visualizers. Alternatively you can put it in your personal Visual Studio 2008\Visualizers folder.&lt;/p&gt;  &lt;p&gt;So, what’s our task? Assume we have the following piece of sample code:&lt;/p&gt;  &lt;blockquote&gt;   &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;class &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Program
&lt;/span&gt;{
    &lt;span style="color:blue;"&gt;static void &lt;/span&gt;Main(&lt;span style="color:blue;"&gt;string&lt;/span&gt;[] args)
    {
        &lt;span style="color:blue;"&gt;var &lt;/span&gt;o = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Parameter(&lt;span style="color:#a31515;"&gt;&amp;quot;o&amp;quot;&lt;/span&gt;);
        &lt;span style="color:blue;"&gt;var &lt;/span&gt;a = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Parameter(&lt;span style="color:#a31515;"&gt;&amp;quot;a&amp;quot;&lt;/span&gt;);
        &lt;span style="color:blue;"&gt;var &lt;/span&gt;b = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Parameter(&lt;span style="color:#a31515;"&gt;&amp;quot;b&amp;quot;&lt;/span&gt;);
        &lt;span style="color:blue;"&gt;var &lt;/span&gt;call = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Call(o, &lt;span style="color:#a31515;"&gt;&amp;quot;Substring&amp;quot;&lt;/span&gt;, a, b);
        &lt;span style="color:blue;"&gt;var &lt;/span&gt;func = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Lambda(call, o, a, b);
        &lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(func);
        &lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(func.&lt;strong&gt;&lt;u&gt;Compile()&lt;/u&gt;&lt;/strong&gt;.DynamicInvoke(&lt;span style="color:#a31515;"&gt;&amp;quot;Bart&amp;quot;&lt;/span&gt;, 1, 2));
    }
}&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;

&lt;p&gt;We already know how to construct the objects and to represent it as a string (which would be (o, a, b) =&amp;gt; o.Substring(a, b)). Now we need to focus on the marked Compile method on LambdaDynamicExpression. Starting with the signature of the delegate, we want to create (at runtime) a method that takes in three “dynamic” parameters (corresponding to parameter expressions o, a and b), returning a resulting object. Since we don’t have any type information available, everything should be System.Object, so we’d end up with the following delegate:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;font color="#0000ff"&gt;delegate object &lt;/font&gt;&lt;font color="#008080"&gt;TheDynamicLambdaFunction&lt;/font&gt;(&lt;font color="#0000ff"&gt;object &lt;/font&gt;o, &lt;font color="#0000ff"&gt;object &lt;/font&gt;a, &lt;font color="#0000ff"&gt;object &lt;/font&gt;b);&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Looking at Compile as a black box, it will return an instance of this delegate pointing at an on-the-fly generated method corresponding to the lambda’s body expression. Returning a System.Delegate, one can call DynamicInvoke (or cast it to a compatible delegate) to invoke it with the given parameters. Obviously we want the call to do “the right thing”, in the sample above it would correspond to a method call to System.String::Substring on “Bart”, passing in startIndex 1 and length 2, producing another string containing “ar”.&lt;/p&gt;

&lt;p&gt;It should be clear that we need to emit IL on the fly to translate the lambda expression but also the lambda’s body which could be anything, not just a MethodCallDynamicExpression. Since we lack other expression node types, one such (trivial) thing would be:&lt;/p&gt;

&lt;blockquote&gt;&lt;/blockquote&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;var &lt;/span&gt;x = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Parameter(&lt;span style="color:#a31515;"&gt;&amp;quot;x&amp;quot;&lt;/span&gt;);
&lt;span style="color:blue;"&gt;var &lt;/span&gt;I = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Lambda(&lt;strong&gt;&lt;u&gt;x&lt;/u&gt;&lt;/strong&gt;, x);
&lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(I);
&lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(I.Compile().DynamicInvoke(&lt;span style="color:#a31515;"&gt;&amp;quot;Bart&amp;quot;&lt;/span&gt;));&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;

&lt;p&gt;which is just the identity function (the underlined bold ‘o’ above indicates the lamdba’s body). I intentionally named the expression above “I” conform SKI combinators where I is defined as λx . x. Similarly we could define the K combinator as:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;var &lt;/span&gt;x = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Parameter(&lt;span style="color:#a31515;"&gt;&amp;quot;x&amp;quot;&lt;/span&gt;);
&lt;span style="color:blue;"&gt;var &lt;/span&gt;y = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Parameter(&lt;span style="color:#a31515;"&gt;&amp;quot;y&amp;quot;&lt;/span&gt;);
&lt;span style="color:blue;"&gt;var &lt;/span&gt;K = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Lambda(x, x, y);
&lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(K);
&lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(K.Compile().DynamicInvoke(&lt;span style="color:#a31515;"&gt;&amp;quot;Bart&amp;quot;&lt;/span&gt;, 123));&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;

&lt;p&gt;but we got sidetracked, so time to move on. The whole point here is that we can’t assume the body of the lambda to be a MethodCallDynamicExpression. So, how do we tackle this? An important observation one can make is this: an expression represents a single value. Right, so what? Wait a minute, is IL-code not stack-based? Adding the two things together we could think of the following solution:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;em&gt;Calling a Compile method on an expression tree object, given a writeable stream for IL instructions, should add all the instructions to the stream required to evaluate the expression, leaving the result of the evaluation on top of the stack.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;A LambdaDynamicExpression is the only dynamic expression that supports a publicly visible Compile method. It’s pseudo-code would look like:&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;Create an IL stream; here the IL stack is empty.&lt;/li&gt;

  &lt;li&gt;Take the Body expression and compile it by emitting IL instructions for it; this causes the IL stack to be one high.&lt;/li&gt;

  &lt;li&gt;Add an IL return instruction to return the object on top of the stack.&lt;/li&gt;

  &lt;li&gt;Return a delegate pointing to the method represented by the generated IL code.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;h1&gt;Supporting expression compilation&lt;/h1&gt;

&lt;p&gt;To make this work, we’ll first extend the base class by adding one more method:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:gray;"&gt;/// &amp;lt;summary&amp;gt;
/// &lt;/span&gt;&lt;span style="color:green;"&gt;Class representing a dynamic expression tree.
&lt;/span&gt;&lt;span style="color:gray;"&gt;/// &amp;lt;/summary&amp;gt;
&lt;/span&gt;&lt;span style="color:blue;"&gt;abstract class &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;DynamicExpression
&lt;/span&gt;{
    &lt;span style="color:gray;"&gt;/// &amp;lt;summary&amp;gt;
    /// &lt;/span&gt;&lt;span style="color:green;"&gt;Appends IL instructions to calculate the expression&amp;#39;s runtime value, putting it on top of the evaluation stack.
    &lt;/span&gt;&lt;span style="color:gray;"&gt;/// &amp;lt;/summary&amp;gt;
    /// &amp;lt;param name=&amp;quot;ilgen&amp;quot;&amp;gt;&lt;/span&gt;&lt;span style="color:green;"&gt;IL generator to append to.&lt;/span&gt;&lt;span style="color:gray;"&gt;&amp;lt;/param&amp;gt;
    /// &amp;lt;param name=&amp;quot;ldArgs&amp;quot;&amp;gt;&lt;/span&gt;&lt;span style="color:green;"&gt;Lambda argument mappings.&lt;/span&gt;&lt;span style="color:gray;"&gt;&amp;lt;/param&amp;gt;
    &lt;/span&gt;&lt;span style="color:blue;"&gt;protected internal abstract void &lt;/span&gt;Compile(&lt;span style="color:#2b91af;"&gt;ILGenerator &lt;/span&gt;ilgen, &lt;span style="color:#2b91af;"&gt;Dictionary&lt;/span&gt;&amp;lt;&lt;span style="color:#2b91af;"&gt;ParameterDynamicExpression&lt;/span&gt;, &lt;span style="color:blue;"&gt;int&lt;/span&gt;&amp;gt; ldArgs);&lt;/pre&gt;

  &lt;pre class="code"&gt;    …&lt;br /&gt;}&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;This method will take in two things: the IL generator (referred to as “IL stream” in the previous paragraph) and a mapping table for the lambda’s parameter expressions. Why do we need the latter, or better: what does it map the parameter expressions to? Assume we’re compiling&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;(o, a, b) =&amp;gt; o.Substring(a, b)&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;While traversing the expression tree, asking every node in the correct order to emit IL instructions, we’ll encounter references to the parameters again. Our goal is to write a dynamic method looking like this:&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;font color="#0000ff"&gt;object &lt;/font&gt;GeneratedDynamicMethod(&lt;font color="#0000ff"&gt;object &lt;/font&gt;o, &lt;font color="#0000ff"&gt;object &lt;/font&gt;a, &lt;font color="#0000ff"&gt;object &lt;/font&gt;b)

    &lt;br /&gt;{

    &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &lt;font color="#0000ff"&gt;return &lt;/font&gt;o.Substring(a, b);

    &lt;br /&gt;}&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;where the . obviously denotes a dynamic method call in this case. As we encounter parameter expressions like o, a or b during the translation for the method body, we need to know how to load those parameters from the argument list on the dynamic method. First of all, notice the lambda parameters got mapped in order of specification to correspond to arguments on the generated dynamic method, i.e. o as the first lambda parameter and is the first parameter on the generated method. And so on. This is precisely what the ldArgs argument on Compile stands for: a mapping from the parameter expression representation from the lambda parameters onto the concrete indices for the arguments:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;o –&amp;gt; 0
    &lt;br /&gt;a –&amp;gt; 1

    &lt;br /&gt;b –&amp;gt; 2&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Whenever we encounter such a parameter expression during the compilation, we know the position of the argument, so we can emit a &lt;em&gt;ldarg&lt;/em&gt; instruction. This is the most trivial Compile override:&lt;/p&gt;

&lt;blockquote&gt;&lt;/blockquote&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;sealed class &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;ParameterDynamicExpression &lt;/span&gt;: &lt;span style="color:#2b91af;"&gt;DynamicExpression
&lt;/span&gt;{
    &lt;span style="color:blue;"&gt;protected internal override void &lt;/span&gt;Compile(&lt;span style="color:#2b91af;"&gt;ILGenerator &lt;/span&gt;ilgen, &lt;span style="color:#2b91af;"&gt;Dictionary&lt;/span&gt;&amp;lt;&lt;span style="color:#2b91af;"&gt;ParameterDynamicExpression&lt;/span&gt;, &lt;span style="color:blue;"&gt;int&lt;/span&gt;&amp;gt; ldArgs)
    {
        &lt;span style="color:blue;"&gt;if &lt;/span&gt;(!ldArgs.ContainsKey(&lt;span style="color:blue;"&gt;this&lt;/span&gt;))
            &lt;span style="color:blue;"&gt;throw new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;InvalidOperationException&lt;/span&gt;(&lt;span style="color:#a31515;"&gt;&amp;quot;Parameter expression &amp;quot; &lt;/span&gt;+ Name + &lt;span style="color:#a31515;"&gt;&amp;quot; is not in scope.&amp;quot;&lt;/span&gt;);

        ilgen.Emit(&lt;span style="color:#2b91af;"&gt;OpCodes&lt;/span&gt;.Ldarg, ldArgs[&lt;span style="color:blue;"&gt;this&lt;/span&gt;]);
    }&lt;/pre&gt;

  &lt;pre class="code"&gt;    …
}&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;This simply says, whenever code needs to be emitted for a ParameterDynamicExpression, simply try to find it in the dictionary to map it onto the formal parameter index on the dynamic method being emitted and turn it into a &lt;em&gt;ldarg &lt;/em&gt;instruction for that argument index. Real full-fledged expression tree implementations would be slightly more complicated because arguments could be hidden when dealing with nested lambdas (quoting, invocation expressions, etc) but that would take us too far away from home.&lt;/p&gt;

&lt;p&gt;For the LambdaDynamicExpression, besides a public Compile method, there will also be an override to the inherited one. It simply asks the Body expression to emit itself (which will result in a one-level high stack containing the evaluation result of the body expression), followed by a ret instruction (simply returning the value evaluated through the Body’s IL code preceding it):&lt;/p&gt;

&lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;sealed class &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;LambdaDynamicExpression &lt;/span&gt;: &lt;span style="color:#2b91af;"&gt;DynamicExpression
&lt;/span&gt;{
    &lt;span style="color:blue;"&gt;protected internal override void &lt;/span&gt;Compile(&lt;span style="color:#2b91af;"&gt;ILGenerator &lt;/span&gt;ilgen, &lt;span style="color:#2b91af;"&gt;Dictionary&lt;/span&gt;&amp;lt;&lt;span style="color:#2b91af;"&gt;ParameterDynamicExpression&lt;/span&gt;, &lt;span style="color:blue;"&gt;int&lt;/span&gt;&amp;gt; ldArgs)
    {
        Body.Compile(ilgen, ldArgs);
        ilgen.Emit(&lt;span style="color:#2b91af;"&gt;OpCodes&lt;/span&gt;.Ret);
    }&lt;/pre&gt;

&lt;pre class="code"&gt;    …&lt;br /&gt;}&lt;/pre&gt;
&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;h1&gt;Emitting code&lt;/h1&gt;

&lt;p&gt;For this post, we’ll omit an implementation for MethodCallDynamicExpression as that will be part of the next post focusing on binders. All we want to get to work today is the I combinator or identity function (yeah, another world-beater :-)):&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;var &lt;/span&gt;x = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Parameter(&lt;span style="color:#a31515;"&gt;&amp;quot;x&amp;quot;&lt;/span&gt;);
&lt;span style="color:blue;"&gt;var &lt;/span&gt;I = &lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;.Lambda(x, x);
&lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(I);
&lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(I.Compile().DynamicInvoke(&lt;span style="color:#a31515;"&gt;&amp;quot;Bart&amp;quot;&lt;/span&gt;));&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;In other words, today we’ll focus on the plumbing of emitting the code and wrapping the method in a delegate that can be returned upon calling LambdaDynamicExpression.Compile. The result for the sample above would be equivalent to:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;public &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Delegate &lt;/span&gt;Compile()
{
    &lt;span style="color:blue;"&gt;return new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Func&lt;/span&gt;&amp;lt;&lt;span style="color:blue;"&gt;object&lt;/span&gt;, &lt;span style="color:blue;"&gt;object&lt;/span&gt;&amp;gt;(&lt;u&gt;&lt;span style="color:blue;"&gt;delegate&lt;/span&gt;(&lt;span style="color:blue;"&gt;object &lt;/span&gt;x) { &lt;span style="color:blue;"&gt;return &lt;/span&gt;x; }&lt;/u&gt;);
}&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;The underlined portion is the code corresponding to I’s compilation. In IL-terms it would be as simplistic as this:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;ldarg.0
    &lt;br /&gt;ret&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This emitted IL method body then needs to get the signature that says “taking in an object, returning an object”. All of this makes up the &lt;em&gt;dynamic method&lt;/em&gt;. But we’re not done yet, as we need to return a delegate to it. In the free translation above, I’ve leveraged the generic System.Func&amp;lt;T1,R&amp;gt; delegate but we only have a limited number of those (up to four arguments), so what if we encounter a method that takes more arguments? Indeed, we’ll need to generate our own delegate types as well. Notice we could cache those very efficiently: the ones with arity (~ number of parameters) up to 4 could simply be mapped onto System.Func delegates with System.Object type parameters, while others would be generated on the fly and kept for reuse if another method with same arity gets compiled. We’ll omit this optimization for now.&lt;/p&gt;

&lt;p&gt;Here’s how the code to create our own delegate type looks like:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;private static &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Type &lt;/span&gt;GetDynamicDelegate(&lt;span style="color:#2b91af;"&gt;Type&lt;/span&gt;[] argumentTypes, &lt;span style="color:#2b91af;"&gt;Type &lt;/span&gt;returnType)
{
    &lt;span style="color:green;"&gt;//
    // Assemblies contain modules; generate those with unique names.
    // The generated assembly is runtime only (doesn&amp;#39;t need to be saved to disk).
    //
    &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;AssemblyBuilder &lt;/span&gt;assemblyBuilder = &lt;span style="color:#2b91af;"&gt;AppDomain&lt;/span&gt;.CurrentDomain.DefineDynamicAssembly(&lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;AssemblyName&lt;/span&gt;(&lt;span style="color:#2b91af;"&gt;Guid&lt;/span&gt;.NewGuid().ToString()), &lt;span style="color:#2b91af;"&gt;AssemblyBuilderAccess&lt;/span&gt;.Run);
    &lt;span style="color:#2b91af;"&gt;ModuleBuilder &lt;/span&gt;moduleBuilder = assemblyBuilder.DefineDynamicModule(&lt;span style="color:#2b91af;"&gt;Guid&lt;/span&gt;.NewGuid().ToString());

    &lt;span style="color:green;"&gt;//
    // Our delegate is a private sealed type deriving from MultiCastDelegate.
    //
    &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;TypeBuilder &lt;/span&gt;typeBuilder = moduleBuilder.DefineType(&lt;span style="color:#a31515;"&gt;&amp;quot;Lambdas&amp;quot;&lt;/span&gt;, &lt;span style="color:#2b91af;"&gt;TypeAttributes&lt;/span&gt;.NotPublic | &lt;span style="color:#2b91af;"&gt;TypeAttributes&lt;/span&gt;.Sealed | &lt;span style="color:#2b91af;"&gt;TypeAttributes&lt;/span&gt;.AutoLayout | &lt;span style="color:#2b91af;"&gt;TypeAttributes&lt;/span&gt;.AnsiClass, &lt;span style="color:blue;"&gt;typeof&lt;/span&gt;(&lt;span style="color:#2b91af;"&gt;MulticastDelegate&lt;/span&gt;));

    &lt;span style="color:green;"&gt;//
    // The delegate&amp;#39;s constructor is a &amp;quot;special name&amp;quot; method with signature (object native int).
    // It doesn&amp;#39;t have a method body by itself; rather, it&amp;#39;s supplied by the managed runtime.
    //
    &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;ConstructorBuilder &lt;/span&gt;ctorBuilder = typeBuilder.DefineConstructor(&lt;span style="color:#2b91af;"&gt;MethodAttributes&lt;/span&gt;.Public | &lt;span style="color:#2b91af;"&gt;MethodAttributes&lt;/span&gt;.HideBySig | &lt;span style="color:#2b91af;"&gt;MethodAttributes&lt;/span&gt;.SpecialName | &lt;span style="color:#2b91af;"&gt;MethodAttributes&lt;/span&gt;.RTSpecialName, &lt;span style="color:#2b91af;"&gt;CallingConventions&lt;/span&gt;.Standard, &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Type&lt;/span&gt;[] { &lt;span style="color:blue;"&gt;typeof&lt;/span&gt;(&lt;span style="color:blue;"&gt;object&lt;/span&gt;), &lt;span style="color:blue;"&gt;typeof&lt;/span&gt;(&lt;span style="color:#2b91af;"&gt;IntPtr&lt;/span&gt;) });
    ctorBuilder.SetImplementationFlags(&lt;span style="color:#2b91af;"&gt;MethodImplAttributes&lt;/span&gt;.Runtime | &lt;span style="color:#2b91af;"&gt;MethodImplAttributes&lt;/span&gt;.Managed);

    &lt;span style="color:green;"&gt;//
    // We only need the Invoke method (BeginInvoke and EndInvoke are irrelevant for us).
    // It doesn&amp;#39;t have a method body by itself; rather, it&amp;#39;s supplied by the managed runtime.
    // Here our delegate signature is enforced.
    //
    &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;MethodBuilder &lt;/span&gt;invokeMethodBuilder = typeBuilder.DefineMethod(&lt;span style="color:#a31515;"&gt;&amp;quot;Invoke&amp;quot;&lt;/span&gt;, &lt;span style="color:#2b91af;"&gt;MethodAttributes&lt;/span&gt;.Public | &lt;span style="color:#2b91af;"&gt;MethodAttributes&lt;/span&gt;.NewSlot | &lt;span style="color:#2b91af;"&gt;MethodAttributes&lt;/span&gt;.HideBySig | &lt;span style="color:#2b91af;"&gt;MethodAttributes&lt;/span&gt;.Virtual, &lt;span style="color:#2b91af;"&gt;CallingConventions&lt;/span&gt;.HasThis, returnType, argumentTypes);
    invokeMethodBuilder.SetImplementationFlags(&lt;span style="color:#2b91af;"&gt;MethodImplAttributes&lt;/span&gt;.Runtime | &lt;span style="color:#2b91af;"&gt;MethodImplAttributes&lt;/span&gt;.Managed);

    &lt;span style="color:green;"&gt;//
    // Return the created delegate type.
    // Notice we could cache this for reuse by other dynamic methods.
    //
    &lt;/span&gt;&lt;span style="color:blue;"&gt;return &lt;/span&gt;typeBuilder.CreateType();
}&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;

&lt;p&gt;Lots of attribute flags which you can read all about in the CLI specification. I don’t pretend to memorize all of those attributes; why would I if ILDASM makes life just great? :-)&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;a href="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_12A2D/image.png"&gt;&lt;img title="image" style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px;" height="260" alt="image" src="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_12A2D/image_thumb.png" width="631" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This is the screenshot of ILDASM showing a delegate for a method with signature object(object, object) as you can see on the Invoke method. We don’t need any of the asynchronous pattern implementation, so we just need a constructor and Invoke method (see section IIA.13.6 on “Delegates” in the CLI standard). One special thing about those is they don’t have an IL code body as they are “runtime managed” (see IIA.14.4.3 on “Implementation Attributes of Methods” in the CLI standard):&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;a href="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_12A2D/image_3.png"&gt;&lt;img title="image" style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px;" height="166" alt="image" src="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_12A2D/image_thumb_3.png" width="640" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Now that we can generate the delegate, we just need to ask the lambda (since that’s the root) expression tree to emit its IL code, which will traverse the entire tree. In order to be able to do this, we need to keep mapping information about the lambda parameters mapped onto the formal arguments as mentioned earlier. Here’s the result:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;public &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Delegate &lt;/span&gt;Compile()
{
    &lt;span style="color:green;"&gt;//
    // Map the lambda parameters onto formal argument indices.
    // Also build up the argument type array.
    //
    &lt;/span&gt;&lt;span style="color:blue;"&gt;var &lt;/span&gt;args = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Type&lt;/span&gt;[Parameters.Count];
    &lt;span style="color:blue;"&gt;var &lt;/span&gt;ldArgs = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Dictionary&lt;/span&gt;&amp;lt;&lt;span style="color:#2b91af;"&gt;ParameterDynamicExpression&lt;/span&gt;, &lt;span style="color:blue;"&gt;int&lt;/span&gt;&amp;gt;();
    &lt;span style="color:blue;"&gt;for &lt;/span&gt;(&lt;span style="color:blue;"&gt;int &lt;/span&gt;i = 0; i &amp;lt; args.Length; i++)
    {
        args[i] = &lt;span style="color:blue;"&gt;typeof&lt;/span&gt;(&lt;span style="color:blue;"&gt;object&lt;/span&gt;);
        ldArgs[Parameters[i]] = i;
    }

    &lt;span style="color:green;"&gt;//
    // Compile the expression tree to an IL method body.
    //
    &lt;/span&gt;&lt;span style="color:blue;"&gt;var &lt;/span&gt;method = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;DynamicMethod&lt;/span&gt;(&lt;span style="color:#a31515;"&gt;&amp;quot;&amp;quot;&lt;/span&gt;, &lt;span style="color:blue;"&gt;typeof&lt;/span&gt;(&lt;span style="color:blue;"&gt;object&lt;/span&gt;), args);
    &lt;span style="color:blue;"&gt;var &lt;/span&gt;ilgen = method.GetILGenerator();
    Compile(ilgen, ldArgs);

    &lt;span style="color:green;"&gt;//
    // Get the delegate matching the dynamic method signature.
    //
    &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Type &lt;/span&gt;dynamicDelegate = GetDynamicDelegate(args, &lt;span style="color:blue;"&gt;typeof&lt;/span&gt;(&lt;span style="color:blue;"&gt;object&lt;/span&gt;));

    &lt;span style="color:green;"&gt;//
    // Return a delegate pointing at our dynamic method.
    //
    &lt;/span&gt;&lt;span style="color:blue;"&gt;return &lt;/span&gt;method.CreateDelegate(dynamicDelegate);
}&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;This code should be relatively straightforward. First we create the mapping while building up an array just containing typeof(object)’s (since all arguments are objects in our dynamic world). Next we create a dynamic method with the right signature, produce the IL generator and let the expression compilation do all of the work to emit the IL. And finally we stick the whole thing in a dynamically created delegate that matches the signature, returning that to the caller. Setting a breakpoint on the last line and executing for the “I” identity combinator shows this:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;a href="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_12A2D/image_4.png"&gt;&lt;img title="image" style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px;" height="184" alt="image" src="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_12A2D/image_thumb_4.png" width="560" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This is the IL visualizer we installed earlier. Notice the friendly string representation for the dynamic method shows the signature, which matches the one of the dynamic lambda in the watch window (which is just “I”). Bringing up the IL visualizer shows stunningly complex code:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;a href="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_12A2D/image_5.png"&gt;&lt;img title="image" style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px;" height="133" alt="image" src="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_12A2D/image_thumb_5.png" width="305" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Ignore the NOPs inserted by the IL generator, but IL_0000 was emitted by ParameterDynamicExpression.Compile through the compilation of the lambda body. IL_0006 was emitted subsequently by LambdaDynamicExpression.Compile and the stack is nicely in balance. Sure enough, the result printed is:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;a href="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_12A2D/image_6.png"&gt;&lt;img title="image" style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px;" height="119" alt="image" src="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_12A2D/image_thumb_6.png" width="372" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Woohoo – truly dynamic (though simplistic) execution! Next time: method call expressions and binders.&lt;/p&gt;&lt;img src="http://bartdesmet.net/aggbug.aspx?PostID=13917" width="1" height="1"&gt;</description><category domain="http://bartdesmet.net/blogs/bart/archive/tags/C_2300_+3.0/default.aspx">C# 3.0</category><category domain="http://bartdesmet.net/blogs/bart/archive/tags/Dynamic+languages/default.aspx">Dynamic languages</category></item><item><title>To Bind or Not To Bind – Dynamic Expression Trees – Part 1</title><link>http://bartdesmet.net/blogs/bart/archive/2008/08/26/to-bind-or-not-to-bind-dynamic-expression-trees-part-1.aspx</link><pubDate>Wed, 27 Aug 2008 05:40:00 GMT</pubDate><guid isPermaLink="false">863c5522-913f-4a64-ac0a-bd5f05abad0f:13913</guid><dc:creator>bart</dc:creator><slash:comments>3</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bartdesmet.net/blogs/bart/rsscomments.aspx?PostID=13913</wfw:commentRss><comments>http://bartdesmet.net/blogs/bart/archive/2008/08/26/to-bind-or-not-to-bind-dynamic-expression-trees-part-1.aspx#comments</comments><description>&lt;p&gt;In the previous post, I outlined the use of the expression trees from the System.Linq.Expressions namespace. Let’s recap to set the scene:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font color="#008080"&gt;Expression&lt;/font&gt;&amp;lt;&lt;font color="#008080"&gt;Func&lt;/font&gt;&amp;lt;&lt;font color="#0000ff"&gt;&lt;u&gt;string&lt;/u&gt;&lt;/font&gt;, &lt;font color="#0000ff"&gt;&lt;u&gt;int&lt;/u&gt;&lt;/font&gt;, &lt;font color="#0000ff"&gt;&lt;u&gt;int&lt;/u&gt;&lt;/font&gt;, &lt;font color="#0000ff"&gt;&lt;u&gt;string&lt;/u&gt;&lt;/font&gt;&amp;gt;&amp;gt; data = (&lt;font color="#0000ff"&gt;&lt;u&gt;string&lt;/u&gt; &lt;/font&gt;s, &lt;font color="#0000ff"&gt;&lt;u&gt;int&lt;/u&gt; &lt;/font&gt;a, &lt;font color="#0000ff"&gt;&lt;u&gt;int&lt;/u&gt; &lt;/font&gt;b) =&amp;gt; s.Substring(a, b);&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;produces (deep breadth)&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font color="#008080"&gt;ParameterExpression &lt;/font&gt;s = &lt;font color="#008080"&gt;Expression&lt;/font&gt;.Parameter(&lt;u&gt;&lt;font color="#0000ff"&gt;typeof&lt;/font&gt;(&lt;font color="#0000ff"&gt;string&lt;/font&gt;)&lt;/u&gt;, &lt;font color="#800000"&gt;“s”&lt;/font&gt;);       &lt;br /&gt;&lt;font color="#008080"&gt;ParameterExpression &lt;/font&gt;a = &lt;font color="#008080"&gt;Expression&lt;/font&gt;.Parameter(&lt;u&gt;&lt;font color="#0000ff"&gt;typeof&lt;/font&gt;(&lt;font color="#0000ff"&gt;int&lt;/font&gt;)&lt;/u&gt;, &lt;font color="#800000"&gt;“a”&lt;/font&gt;);       &lt;br /&gt;&lt;font color="#008080"&gt;ParameterExpression &lt;/font&gt;b = &lt;font color="#008080"&gt;Expression&lt;/font&gt;.Parameter(&lt;u&gt;&lt;font color="#0000ff"&gt;typeof&lt;/font&gt;(&lt;font color="#0000ff"&gt;int&lt;/font&gt;)&lt;/u&gt;, &lt;font color="#800000"&gt;“b”&lt;/font&gt;);       &lt;br /&gt;      &lt;br /&gt;&lt;font color="#008080"&gt;Expression&lt;/font&gt;&amp;lt;&lt;font color="#008080"&gt;Func&lt;/font&gt;&amp;lt;&lt;font color="#0000ff"&gt;&lt;u&gt;string&lt;/u&gt;&lt;/font&gt;, &lt;font color="#0000ff"&gt;&lt;u&gt;int&lt;/u&gt;&lt;/font&gt;, &lt;font color="#0000ff"&gt;&lt;u&gt;int&lt;/u&gt;&lt;/font&gt;, &lt;font color="#0000ff"&gt;&lt;u&gt;string&lt;/u&gt;&lt;/font&gt;&amp;gt;&amp;gt; data = &lt;font color="#008080"&gt;Expression&lt;/font&gt;.Lambda&amp;lt;&lt;font color="#008080"&gt;Func&lt;/font&gt;&amp;lt;&lt;font color="#0000ff"&gt;&lt;u&gt;string&lt;/u&gt;&lt;/font&gt;, &lt;font color="#0000ff"&gt;&lt;u&gt;int&lt;/u&gt;&lt;/font&gt;, &lt;font color="#0000ff"&gt;&lt;u&gt;int&lt;/u&gt;&lt;/font&gt;, &lt;font color="#0000ff"&gt;&lt;u&gt;string&lt;/u&gt;&lt;/font&gt;&amp;gt;&amp;gt;(       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &lt;font color="#008080"&gt;Expression&lt;/font&gt;&lt;font color="#000000"&gt;.Call(s, &lt;u&gt;&lt;font color="#0000ff"&gt;typeof&lt;/font&gt;(&lt;font color="#0000ff"&gt;string&lt;/font&gt;)&lt;/u&gt;.GetMethod(&lt;font color="#800000"&gt;“Substring”&lt;/font&gt;, &lt;u&gt;&lt;font color="#0000ff"&gt;new &lt;/font&gt;&lt;font color="#008080"&gt;Type&lt;/font&gt;[] { &lt;font color="#0000ff"&gt;typeof&lt;/font&gt;(&lt;font color="#0000ff"&gt;int&lt;/font&gt;), &lt;font color="#0000ff"&gt;typeof&lt;/font&gt;(&lt;font color="#0000ff"&gt;int&lt;/font&gt;) }&lt;/u&gt;), a, b),         &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; s, a, b         &lt;br /&gt;);         &lt;br /&gt;        &lt;br /&gt;&lt;font color="#008080"&gt;Func&lt;/font&gt;&amp;lt;&lt;font color="#0000ff"&gt;&lt;u&gt;string&lt;/u&gt;&lt;/font&gt;, &lt;font color="#0000ff"&gt;&lt;u&gt;int&lt;/u&gt;&lt;/font&gt;, &lt;font color="#0000ff"&gt;&lt;u&gt;int&lt;/u&gt;&lt;/font&gt;, &lt;font color="#0000ff"&gt;&lt;u&gt;string&lt;/u&gt;&lt;/font&gt;&amp;gt; fun = data.Compile();         &lt;br /&gt;&lt;font color="#008080"&gt;Console&lt;/font&gt;.WriteLine(fun(&lt;font color="#800000"&gt;“Bart”&lt;/font&gt;, 1, 2));&lt;/font&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;where I’ve indicated all the strong typing using underlines. Wow, that’s a lot dude! Based on all of this strong typing, there are little or no runtime surprises possible concerning running the right method (unless a MissingMethodException occurs for some reason). Obviously, expression trees could be much more complex but to illustrate the core points of the type system, we’ll restrict ourselves to parameters, method calls and lambdas.&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;So what do we want to try now? We want to design an API similar to the one used above but without all this type information. Essentially, it would look like:&lt;/p&gt;  &lt;blockquote&gt;&lt;/blockquote&gt;  &lt;blockquote&gt;&lt;font color="#008080"&gt;ParameterExpression &lt;/font&gt;s = &lt;font color="#008080"&gt;Expression&lt;/font&gt;.Parameter(&lt;font color="#800000"&gt;“s”&lt;/font&gt;);     &lt;br /&gt;&lt;font color="#008080"&gt;ParameterExpression &lt;/font&gt;a = &lt;font color="#008080"&gt;Expression&lt;/font&gt;.Parameter(&lt;font color="#800000"&gt;“a”&lt;/font&gt;);     &lt;br /&gt;&lt;font color="#008080"&gt;ParameterExpression &lt;/font&gt;b = &lt;font color="#008080"&gt;Expression&lt;/font&gt;.Parameter(&lt;font color="#800000"&gt;“b”&lt;/font&gt;);     &lt;br /&gt;    &lt;br /&gt;&lt;font color="#008080"&gt;LambdaExpression&lt;/font&gt; data = &lt;font color="#008080"&gt;Expression&lt;/font&gt;.Lambda(     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &lt;font color="#008080"&gt;Expression&lt;/font&gt;&lt;font color="#000000"&gt;.Call(s, &lt;font color="#800000"&gt;“Substring”&lt;/font&gt;, a, b),       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; s, a, b       &lt;br /&gt;);       &lt;br /&gt;      &lt;br /&gt;&lt;font color="#008080"&gt;Delegate&lt;/font&gt; fun = data.Compile();       &lt;br /&gt;&lt;font color="#008080"&gt;Console&lt;/font&gt;.WriteLine(fun.&lt;u&gt;&lt;strong&gt;Dynamic&lt;/strong&gt;Invoke&lt;/u&gt;(&lt;font color="#800000"&gt;“Bart”&lt;/font&gt;, 1, 2));&lt;/font&gt;&lt;/blockquote&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;and all of a sudden we see the dynamic aspect lurking around the corner on the very last line where we call through the weakly-typed delegate passing in three &lt;em&gt;objects&lt;/em&gt; which just happen to be a string and two ints, causing the lookup for a Substring method applied to s (becoming “Bart”) with arguments a and b (respectively 1 and 2) to succeed. The important thing here though is that a “Substring” method with a compatible signature might be available on another type, maybe type Bar, but taking in two longs:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font color="#0000ff"&gt;class &lt;/font&gt;&lt;font color="#008080"&gt;Bar&lt;/font&gt;       &lt;br /&gt;{       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &lt;font color="#0000ff"&gt;public &lt;/font&gt;&lt;font color="#008080"&gt;Foo &lt;/font&gt;Substring(&lt;font color="#0000ff"&gt;long &lt;/font&gt;a, &lt;font color="#0000ff"&gt;long &lt;/font&gt;b) { … }       &lt;br /&gt;}&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;The calling code would still work and the console would print the result of Foo.ToString on the instance returned by Bar.Substring. What it takes to make this work consists of three things:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Dynamic expression trees (i.e. as the one above with stripped type information); &lt;/li&gt;    &lt;li&gt;IL code generation at runtime on the fly (to produce the delegate “fun” in the sample above) &lt;/li&gt;    &lt;li&gt;Binders (things that provide runtime support to resolve method calls) &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Of course you could go much further than this with complete ASTs (the big brothers to expression trees) and “rules” but we’re not going to reinvent the DLR :-). &lt;a href="http://blogs.msdn.com/mmaly"&gt;Martin Maly&lt;/a&gt; has quite some information on those topics on his blog (must-reads!). Today we’ll cover the first bullet point.&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;h1&gt;Our dynamic expression trees&lt;/h1&gt;  &lt;p&gt;To disambiguate with the LINQ expression trees, let’s sneak the word Dynamic in, making our sample look like:&lt;/p&gt;  &lt;blockquote&gt;&lt;font color="#008080"&gt;ParameterDynamicExpression &lt;/font&gt;s = &lt;font color="#008080"&gt;DynamicExpression&lt;/font&gt;.Parameter(&lt;font color="#800000"&gt;“s”&lt;/font&gt;);     &lt;br /&gt;&lt;font color="#008080"&gt;ParameterDynamicExpression &lt;/font&gt;a = &lt;font color="#008080"&gt;DynamicExpression&lt;/font&gt;.Parameter(&lt;font color="#800000"&gt;“a”&lt;/font&gt;);     &lt;br /&gt;&lt;font color="#008080"&gt;ParameterDynamicExpression &lt;/font&gt;b = &lt;font color="#008080"&gt;DynamicExpression&lt;/font&gt;.Parameter(&lt;font color="#800000"&gt;“b”&lt;/font&gt;);     &lt;br /&gt;    &lt;br /&gt;&lt;font color="#008080"&gt;LambdaDynamicExpression&lt;/font&gt; data = &lt;font color="#008080"&gt;DynamicExpression&lt;/font&gt;.Lambda(     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &lt;font color="#008080"&gt;DynamicExpression&lt;/font&gt;&lt;font color="#000000"&gt;.Call(s, &lt;font color="#800000"&gt;“Substring”&lt;/font&gt;, a, b),       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; s, a, b       &lt;br /&gt;);       &lt;br /&gt;      &lt;br /&gt;&lt;font color="#008080"&gt;Delegate&lt;/font&gt; fun = data.Compile();       &lt;br /&gt;&lt;font color="#008080"&gt;Console&lt;/font&gt;.WriteLine(fun.&lt;u&gt;&lt;strong&gt;Dynamic&lt;/strong&gt;Invoke&lt;/u&gt;(&lt;font color="#800000"&gt;“Bart”&lt;/font&gt;, 1, 2));&lt;/font&gt;&lt;/blockquote&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;All of those *DynamicExpression classes extend the DynamicExpression base class while having a factory method on DynamicExpression too, following the design of LINQ’s expression trees. We’ll omit the NodeType property for simplicity and the Type property, because we obviously don’t want a static type to be associated with each expression tree node. We’ll also get rid of a lot of node types, just leaving the factories in for our three node types:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;a href="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_E57/image.png"&gt;&lt;img title="image" style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;" height="369" alt="image" src="http://www.bartdesmet.info/images_wlw/ToBindorNotToBindDynamicExpressionTreesP_E57/image_thumb.png" width="595" border="0" /&gt;&lt;/a&gt; &lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;So, how does this look like? The factory methods will be just convenient syntax around internal constructor calls producing the concrete node types. In addition, we’ll override ToString to produce a friendly-on-the-eye string representation of expression trees, much like our static LINQ friends. First, the DynamicExpression base class:&lt;/p&gt;  &lt;blockquote&gt;   &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;abstract class &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;DynamicExpression
&lt;/span&gt;{
    &lt;span style="color:blue;"&gt;public static &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;ParameterDynamicExpression &lt;/span&gt;Parameter(&lt;span style="color:blue;"&gt;string &lt;/span&gt;name)
    {
        &lt;span style="color:blue;"&gt;return new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;ParameterDynamicExpression&lt;/span&gt;(name);
    }

    &lt;span style="color:blue;"&gt;public static &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;MethodCallDynamicExpression &lt;/span&gt;Call(&lt;span style="color:#2b91af;"&gt;DynamicExpression &lt;/span&gt;instance, &lt;span style="color:blue;"&gt;string &lt;/span&gt;method, &lt;span style="color:blue;"&gt;params &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;[] arguments)
    {
        &lt;span style="color:blue;"&gt;return new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;MethodCallDynamicExpression&lt;/span&gt;(instance, method, arguments);
    }

    &lt;span style="color:blue;"&gt;public static &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;LambdaDynamicExpression &lt;/span&gt;Lambda(&lt;span style="color:#2b91af;"&gt;DynamicExpression &lt;/span&gt;body, &lt;span style="color:blue;"&gt;params &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;ParameterDynamicExpression&lt;/span&gt;[] parameters)
    {
        &lt;span style="color:blue;"&gt;return new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;LambdaDynamicExpression&lt;/span&gt;(body, parameters);
    }&lt;/pre&gt;

  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;&lt;font color="#808080"&gt;    &lt;/font&gt;protected internal abstract void &lt;/span&gt;ToString(&lt;span style="color:#2b91af;"&gt;StringBuilder &lt;/span&gt;sb);

&lt;span style="color:blue;"&gt;&lt;font color="#808080"&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="color:blue;"&gt;&lt;font color="#808080"&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="color:blue;"&gt;    public override string &lt;/span&gt;ToString()
    {
        &lt;span style="color:#2b91af;"&gt;StringBuilder &lt;/span&gt;sb = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;StringBuilder&lt;/span&gt;();
        ToString(sb);
        &lt;span style="color:blue;"&gt;return &lt;/span&gt;sb.ToString();
    }
}&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;We’ll extend this class a bit more in the next part where we’ll tackle compilation, but let’s move on to each of the three subtypes right now:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;sealed class &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;ParameterDynamicExpression &lt;/span&gt;: &lt;span style="color:#2b91af;"&gt;DynamicExpression
&lt;/span&gt;{
    &lt;span style="color:blue;"&gt;internal &lt;/span&gt;ParameterDynamicExpression(&lt;span style="color:blue;"&gt;string &lt;/span&gt;name)
    {
        Name = name;
    }

    &lt;span style="color:blue;"&gt;public string &lt;/span&gt;Name { &lt;span style="color:blue;"&gt;get&lt;/span&gt;; &lt;span style="color:blue;"&gt;private set&lt;/span&gt;; }

&lt;span style="color:blue;"&gt;    protected internal override void &lt;/span&gt;ToString(&lt;span style="color:#2b91af;"&gt;StringBuilder &lt;/span&gt;sb)
    {
        sb.Append(Name);
    }
}&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;Nothing surprising here. The expression for a dynamic method call is a slightly bit more complicated :-)…&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;sealed class &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;MethodCallDynamicExpression &lt;/span&gt;: &lt;span style="color:#2b91af;"&gt;DynamicExpression
&lt;/span&gt;{
    &lt;span style="color:blue;"&gt;internal &lt;/span&gt;MethodCallDynamicExpression(&lt;span style="color:#2b91af;"&gt;DynamicExpression &lt;/span&gt;instance, &lt;span style="color:blue;"&gt;string &lt;/span&gt;method, &lt;span style="color:blue;"&gt;params &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;[] arguments)
    {
        Object = instance;
        Method = method;
        Arguments = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;ReadOnlyCollection&lt;/span&gt;&amp;lt;&lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;&amp;gt;(arguments);
    }

    &lt;span style="color:blue;"&gt;public &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;ReadOnlyCollection&lt;/span&gt;&amp;lt;&lt;span style="color:#2b91af;"&gt;DynamicExpression&lt;/span&gt;&amp;gt; Arguments { &lt;span style="color:blue;"&gt;get&lt;/span&gt;; &lt;span style="color:blue;"&gt;private set&lt;/span&gt;; }
    &lt;span style="color:blue;"&gt;public &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;DynamicExpression &lt;/span&gt;Object { &lt;span style="color:blue;"&gt;get&lt;/span&gt;; &lt;span style="color:blue;"&gt;private set&lt;/span&gt;; }
    &lt;span style="color:blue;"&gt;public string &lt;/span&gt;Method { &lt;span style="color:blue;"&gt;get&lt;/span&gt;; &lt;span style="color:blue;"&gt;private set&lt;/span&gt;; }&lt;/pre&gt;

  &lt;pre class="code"&gt;    &lt;span style="color:blue;"&gt;protected internal override void &lt;/span&gt;ToString(&lt;span style="color:#2b91af;"&gt;StringBuilder &lt;/span&gt;sb)
    {
        Object.ToString(sb);
        sb.Append(&lt;span style="color:#a31515;"&gt;&amp;quot;.&amp;quot;&lt;/span&gt;);
        sb.Append(Method);
        sb.Append(&lt;span style="color:#a31515;"&gt;&amp;quot;(&amp;quot;&lt;/span&gt;);

        &lt;span style="color:blue;"&gt;int &lt;/span&gt;n = Arguments.Count;
        &lt;span style="color:blue;"&gt;for &lt;/span&gt;(&lt;span style="color:blue;"&gt;int &lt;/span&gt;i = 0; i &amp;lt; n; i++)
        {
            Arguments[i].ToString(sb);
            &lt;span style="color:blue;"&gt;if &lt;/span&gt;(i != n - 1)
                sb.Append(&lt;span style="color:#a31515;"&gt;&amp;quot;, &amp;quot;&lt;/span&gt;);
        }

        sb.Append(&lt;span style="color:#a31515;"&gt;&amp;quot;)&amp;quot;&lt;/span&gt;);
    }
}&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;I told’ya it was going to be mind-blowing. The core thing to notice though is the composability because of the use of DynamicExpressions as the Object (i.e. the instance where we’ll invoke the method on) and the Arguments collection members. Also notice we don’t support static method calls in here (for which Object would be null – you can envision the right checking in the factory method, omitted for brevity) although it would be perfectly possible to come up with such a thing (think about “global functions” for example, but remember we don’t have a type that tells us where to look for the method – ideally you’d have a mixture of statically and dynamically typed trees interwoven). Oh, and the pretty printing logic in ToString isn’t too complex either…&lt;/p&gt;

&lt;p&gt;Finally, let’s move on to the lambda expression class:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;sealed class &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;LambdaDynamicExpression &lt;/span&gt;: &lt;span style="color:#2b91af;"&gt;DynamicExpression
&lt;/span&gt;{
    &lt;span style="color:blue;"&gt;internal &lt;/span&gt;LambdaDynamicExpression(&lt;span style="color:#2b91af;"&gt;DynamicExpression &lt;/span&gt;body, &lt;span style="color:blue;"&gt;params &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;ParameterDynamicExpression&lt;/span&gt;[] parameters)
    {
        Body = body;
        Parameters = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;ReadOnlyCollection&lt;/span&gt;&amp;lt;&lt;span style="color:#2b91af;"&gt;ParameterDynamicExpression&lt;/span&gt;&amp;gt;(parameters);
    }

    &lt;span style="color:blue;"&gt;public &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;DynamicExpression &lt;/span&gt;Body { &lt;span style="color:blue;"&gt;get&lt;/span&gt;; &lt;span style="color:blue;"&gt;private set&lt;/span&gt;; }
    &lt;span style="color:blue;"&gt;public &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;ReadOnlyCollection&lt;/span&gt;&amp;lt;&lt;span style="color:#2b91af;"&gt;ParameterDynamicExpression&lt;/span&gt;&amp;gt; Parameters { &lt;span style="color:blue;"&gt;get&lt;/span&gt;; &lt;span style="color:blue;"&gt;private set&lt;/span&gt;; }

    &lt;span style="color:blue;"&gt;public &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Delegate &lt;/span&gt;Compile()
    {
        &lt;span style="color:blue;"&gt;return null&lt;/span&gt;;
    }&lt;/pre&gt;

  &lt;pre class="code"&gt;    &lt;span style="color:blue;"&gt;protected internal override void &lt;/span&gt;ToString(&lt;span style="color:#2b91af;"&gt;StringBuilder &lt;/span&gt;sb)
    {
        sb.Append(&lt;span style="color:#a31515;"&gt;&amp;quot;(&amp;quot;&lt;/span&gt;);

        &lt;span style="color:blue;"&gt;int &lt;/span&gt;n = Parameters.Count;
        &lt;span style="color:blue;"&gt;for &lt;/span&gt;(&lt;span style="color:blue;"&gt;int &lt;/span&gt;i = 0; i &amp;lt; n; i++)
        {
            Parameters[i].ToString(sb);
            &lt;span style="color:blue;"&gt;if &lt;/span&gt;(i != n - 1)
                sb.Append(&lt;span style="color:#a31515;"&gt;&amp;quot;, &amp;quot;&lt;/span&gt;);
        }

        sb.Append(&lt;span style="color:#a31515;"&gt;&amp;quot;) =&amp;gt; &amp;quot;&lt;/span&gt;);
        Body.ToString(sb);
    }
}&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;Same deal concerning parameterization based on DynamicExpression instances. I promise you the Compile method will be pretty interesting to say the least, so stay tuned for the next post!&lt;/p&gt;&lt;img src="http://bartdesmet.net/aggbug.aspx?PostID=13913" width="1" height="1"&gt;</description><category domain="http://bartdesmet.net/blogs/bart/archive/tags/C_2300_+3.0/default.aspx">C# 3.0</category><category domain="http://bartdesmet.net/blogs/bart/archive/tags/Dynamic+languages/default.aspx">Dynamic languages</category></item><item><title>To Bind or Not To Bind – Dynamic Expression Trees – Part 0</title><link>http://bartdesmet.net/blogs/bart/archive/2008/08/26/to-bind-or-not-to-bind-dynamic-expression-trees-part-0.aspx</link><pubDate>Tue, 26 Aug 2008 07:59:04 GMT</pubDate><guid isPermaLink="false">863c5522-913f-4a64-ac0a-bd5f05abad0f:13912</guid><dc:creator>bart</dc:creator><slash:comments>3</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bartdesmet.net/blogs/bart/rsscomments.aspx?PostID=13912</wfw:commentRss><comments>http://bartdesmet.net/blogs/bart/archive/2008/08/26/to-bind-or-not-to-bind-dynamic-expression-trees-part-0.aspx#comments</comments><description>&lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;By now, most of my blog readers will be familiar with the simple concept of expression trees in C# 3.0 and VB 9.0. A quick recap. What’s the type of the expression below?&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;blockquote&gt;&lt;/blockquote&gt;  &lt;blockquote&gt;   &lt;p&gt;(&lt;font color="#0000ff"&gt;string &lt;/font&gt;s, &lt;font color="#0000ff"&gt;int &lt;/font&gt;a, &lt;font color="#0000ff"&gt;int &lt;/font&gt;b) =&amp;gt; s.Substring(a, b)&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Shockingly, you can’t tell. Why? Lambdas have two forms of representation: code (as anonymous methods) or data (as expression trees). One more time:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font color="#008080"&gt;Func&lt;/font&gt;&amp;lt;&lt;font color="#0000ff"&gt;string&lt;/font&gt;, &lt;font color="#0000ff"&gt;int&lt;/font&gt;, &lt;font color="#0000ff"&gt;int&lt;/font&gt;, &lt;font color="#0000ff"&gt;string&lt;/font&gt;&amp;gt; code = (&lt;font color="#0000ff"&gt;string &lt;/font&gt;s, &lt;font color="#0000ff"&gt;int &lt;/font&gt;a, &lt;font color="#0000ff"&gt;int &lt;/font&gt;b) =&amp;gt; s.Substring(a, b);&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;produces&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font color="#008080"&gt;Func&lt;/font&gt;&amp;lt;&lt;font color="#0000ff"&gt;string&lt;/font&gt;, &lt;font color="#0000ff"&gt;int&lt;/font&gt;, &lt;font color="#0000ff"&gt;int&lt;/font&gt;, &lt;font color="#0000ff"&gt;string&lt;/font&gt;&amp;gt; code = &lt;font color="#0000ff"&gt;delegate &lt;/font&gt;(&lt;font color="#0000ff"&gt;string &lt;/font&gt;s, &lt;font color="#0000ff"&gt;int &lt;/font&gt;a, &lt;font color="#0000ff"&gt;int &lt;/font&gt;b) { &lt;font color="#0000ff"&gt;return &lt;/font&gt;s.Substring(a, b); };&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;where&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font color="#008080"&gt;Expression&lt;/font&gt;&amp;lt;&lt;font color="#008080"&gt;Func&lt;/font&gt;&amp;lt;&lt;font color="#0000ff"&gt;string&lt;/font&gt;, &lt;font color="#0000ff"&gt;int&lt;/font&gt;, &lt;font color="#0000ff"&gt;int&lt;/font&gt;, &lt;font color="#0000ff"&gt;string&lt;/font&gt;&amp;gt;&amp;gt; data = (&lt;font color="#0000ff"&gt;string &lt;/font&gt;s, &lt;font color="#0000ff"&gt;int &lt;/font&gt;a, &lt;font color="#0000ff"&gt;int &lt;/font&gt;b) =&amp;gt; s.Substring(a, b);&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;produces (deep breadth)&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font color="#008080"&gt;ParameterExpression &lt;/font&gt;s = &lt;font color="#008080"&gt;Expression&lt;/font&gt;.Parameter(&lt;font color="#0000ff"&gt;typeof&lt;/font&gt;(&lt;font color="#0000ff"&gt;string&lt;/font&gt;), &lt;font color="#800000"&gt;“s”&lt;/font&gt;);       &lt;br /&gt;&lt;font color="#008080"&gt;ParameterExpression &lt;/font&gt;a = &lt;font color="#008080"&gt;Expression&lt;/font&gt;.Parameter(&lt;font color="#0000ff"&gt;typeof&lt;/font&gt;(&lt;font color="#0000ff"&gt;int&lt;/font&gt;), &lt;font color="#800000"&gt;“a”&lt;/font&gt;);       &lt;br /&gt;&lt;font color="#008080"&gt;ParameterExpression &lt;/font&gt;b = &lt;font color="#008080"&gt;Expression&lt;/font&gt;.Parameter(&lt;font color="#0000ff"&gt;typeof&lt;/font&gt;(&lt;font color="#0000ff"&gt;int&lt;/font&gt;), &lt;font color="#800000"&gt;“b”&lt;/font&gt;);       &lt;br /&gt;      &lt;br /&gt;&lt;font color="#008080"&gt;Expression&lt;/font&gt;&amp;lt;&lt;font color="#008080"&gt;Func&lt;/font&gt;&amp;lt;&lt;font color="#0000ff"&gt;string&lt;/font&gt;, &lt;font color="#0000ff"&gt;int&lt;/font&gt;, &lt;font color="#0000ff"&gt;int&lt;/font&gt;, &lt;font color="#0000ff"&gt;string&lt;/font&gt;&amp;gt;&amp;gt; data = &lt;font color="#008080"&gt;Expression&lt;/font&gt;.Lambda&amp;lt;&lt;font color="#008080"&gt;Func&lt;/font&gt;&amp;lt;&lt;font color="#0000ff"&gt;string&lt;/font&gt;, &lt;font color="#0000ff"&gt;int&lt;/font&gt;, &lt;font color="#0000ff"&gt;int&lt;/font&gt;, &lt;font color="#0000ff"&gt;string&lt;/font&gt;&amp;gt;&amp;gt;(       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &lt;font color="#008080"&gt;Expression&lt;/font&gt;&lt;font color="#000000"&gt;.Call(s, &lt;font color="#0000ff"&gt;typeof&lt;/font&gt;(&lt;font color="#0000ff"&gt;string&lt;/font&gt;).GetMethod(&lt;font color="#800000"&gt;“Substring”&lt;/font&gt;, &lt;font color="#0000ff"&gt;new &lt;/font&gt;&lt;font color="#008080"&gt;Type&lt;/font&gt;[] { &lt;font color="#0000ff"&gt;typeof&lt;/font&gt;(&lt;font color="#0000ff"&gt;int&lt;/font&gt;), &lt;font color="#0000ff"&gt;typeof&lt;/font&gt;(&lt;font color="#0000ff"&gt;int&lt;/font&gt;) }), a, b),         &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; s, a, b         &lt;br /&gt;);&lt;/font&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;When calling the Compile method on the produced (lambda-expression) data object we’ll get exactly the same IL code &lt;u&gt;but generated at runtime&lt;/u&gt; through the form of a (delegate pointing at a) dynamic(ally generated) method using Reflection.Emit. So far, so good. But what are the characteristics of the expression tree’s generated code? Two things:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;statically typed &lt;/li&gt;    &lt;li&gt;early-bound &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;In more human terms, we know &lt;u&gt;at compile time&lt;/u&gt; the type of all the involved expressions – at the entry points (i.e. the leaf levels) we’re passing it in with uttermost detail (see the Parameter factory method’s first argument for instance) but all intermediate nodes in the expression tree have a type too. E.g. the Expression.Call factory call returns a MethodCallExpression whose wrapped method call’s return type is System.String, hence that becomes the type of the node. Talking about method calls, those are bound at compile time too: we know precisely what method to call because of all the type information available about the arguments.&lt;/p&gt;  &lt;p&gt;Isn’t this cool? Sure it is, but what about dynamic languages? Are those able to use this particular form of expression trees? The simple answer is no; well, at least not in a &lt;em&gt;dynamic&lt;/em&gt; way, meaning with dynamic typing (i.e. the type of every node is determined &lt;u&gt;at run time&lt;/u&gt;) and late binding for methods (i.e. we hope to find a suitable method overload at runtime). What can we do about this? Here we’re getting in the realm of DLR stuff and such. This blog series is not about DLR itself though, it’s rather about outlining some crucial concepts of dynamic typing including &lt;strong&gt;“dynamic expression trees”&lt;/strong&gt; emitting &lt;strong&gt;dynamic call sites&lt;/strong&gt; using &lt;strong&gt;binders&lt;/strong&gt;.&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;In the first part coming up soon, we’ll start by investigating how to build dynamic expression trees.&lt;/p&gt;&lt;img src="http://bartdesmet.net/aggbug.aspx?PostID=13912" width="1" height="1"&gt;</description></item><item><title>Appropriate use of Local Variable Type Inference</title><link>http://bartdesmet.net/blogs/bart/archive/2008/08/23/appropriate-use-of-local-variable-type-inference.aspx</link><pubDate>Sat, 23 Aug 2008 09:04:45 GMT</pubDate><guid isPermaLink="false">863c5522-913f-4a64-ac0a-bd5f05abad0f:13900</guid><dc:creator>bart</dc:creator><slash:comments>8</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bartdesmet.net/blogs/bart/rsscomments.aspx?PostID=13900</wfw:commentRss><comments>http://bartdesmet.net/blogs/bart/archive/2008/08/23/appropriate-use-of-local-variable-type-inference.aspx#comments</comments><description>&lt;p&gt;By now, most – if not all – readers of my blog will be familiar with this C# 3.0 and VB 9.0 feature called Local Variable Type Inference or Implicitly Typed Local Variables. The idea is simple: since the compiler knows (and hence can infer) type information for expressions, also referred to as rvals, there’s no need for the developer to say the type. In most cases it’s a convenience, for example:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font color="#008080"&gt;Dictionary&lt;/font&gt;&amp;lt;&lt;font color="#008080"&gt;Customer&lt;/font&gt;, &lt;font color="#008080"&gt;List&lt;/font&gt;&amp;lt;&lt;font color="#008080"&gt;PhoneNumber&lt;/font&gt;&amp;gt;&amp;gt; phonebook = &lt;font color="#0000ff"&gt;new &lt;/font&gt;&lt;font color="#008080"&gt;Dictionary&lt;/font&gt;&amp;lt;&lt;font color="#008080"&gt;Customer&lt;/font&gt;, &lt;font color="#008080"&gt;List&lt;/font&gt;&amp;lt;&lt;font color="#008080"&gt;PhoneNumber&lt;/font&gt;&amp;gt;&amp;gt;();&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;That’s literally saying the same thing twice: declare a variable of type &lt;em&gt;mumble-mumble&lt;/em&gt; and assign it a new instance of type &lt;em&gt;mumble-mumble&lt;/em&gt;. Wouldn’t it be nice just to say:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font color="#0000ff"&gt;var&lt;/font&gt; phonebook = &lt;font color="#0000ff"&gt;new &lt;/font&gt;&lt;font color="#008080"&gt;Dictionary&lt;/font&gt;&amp;lt;&lt;font color="#008080"&gt;Customer&lt;/font&gt;, &lt;font color="#008080"&gt;List&lt;/font&gt;&amp;lt;&lt;font color="#008080"&gt;PhoneNumber&lt;/font&gt;&amp;gt;&amp;gt;();&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;while it still means exactly the same as the original fragment? That’s what this language feature allows us to do without loosing any of the strong typing. The reason it’s very convenient in the sample above is because of the introduction of arbitrary type construction capabilities due to generics in CLR 2.0. Before this invention, types couldn’t compose arbitrarily big and type names tend to be not too long-winded (namespaces help here too).&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;As convenient as the case above can be, sometimes type inference is a requirement which is introduced by the invention of anonymous types. Typically those are used in projection clauses of LINQ queries although they can be used in separation as well. E.g.:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font color="#0000ff"&gt;var &lt;/font&gt;res = &lt;font color="#0000ff"&gt;from &lt;/font&gt;p &lt;font color="#0000ff"&gt;in &lt;/font&gt;&lt;font color="#008080"&gt;Process&lt;/font&gt;.GetProcesses() &lt;font color="#0000ff"&gt;select new &lt;/font&gt;{ Name = p.ProcessName, Memory = p.WorkingSet64 };&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;This piece of code gives birth to an anonymous type with two properties Name and Memory (notice the type of those properties is inferred in a similar way from their assigned right-hand side) which is – as the name implies – a type with an unspeakable name. In reality the above produces something like:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font color="#008080"&gt;IEnumerable&lt;/font&gt;&amp;lt;&lt;font color="#008080"&gt;AnonymousType1&lt;/font&gt;&amp;gt; res = &lt;font color="#0000ff"&gt;from &lt;/font&gt;p &lt;font color="#0000ff"&gt;in &lt;/font&gt;&lt;font color="#008080"&gt;Process&lt;/font&gt;.GetProcesses() &lt;font color="#0000ff"&gt;select new &lt;/font&gt;{ Name = p.ProcessName, Memory = p.WorkingSet64 };&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;where the AnonymousType1 portion is unknown to the developer, so type inference comes to the rescue.&lt;/p&gt;  &lt;p&gt;Alright. But when is it appropriate to use the type inference feature? Here are some personal rules I tend to apply quite strictly:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Do use type inference…&lt;/li&gt;    &lt;ul&gt;     &lt;li&gt;where anonymous types are used – you can’t go without it (unless you want to treat them as System.Object of course and only care about their ToString method or so):       &lt;br /&gt;        &lt;br /&gt;&lt;font color="#0000ff"&gt;var &lt;/font&gt;point = &lt;font color="#0000ff"&gt;new &lt;/font&gt;{ X = 10, Y = 5 }; &lt;font color="#008000"&gt;//OK&lt;/font&gt; – what else could you do?        &lt;br /&gt;&lt;font color="#0000ff"&gt;var &lt;/font&gt;res = &lt;font color="#0000ff"&gt;from &lt;/font&gt;p &lt;font color="#0000ff"&gt;in &lt;/font&gt;&lt;font color="#008080"&gt;Process&lt;/font&gt;.GetProcesses() &lt;font color="#0000ff"&gt;select new &lt;/font&gt;{ Name = p.ProcessName, Memory = p.WorkingSet64 }; &lt;font color="#008000"&gt;//OK&lt;/font&gt; – what else could you do?        &lt;br /&gt;&lt;/li&gt;      &lt;li&gt;when the right-hand side explicitly states the type or the type is clearly inferable by humans given the context:       &lt;br /&gt;        &lt;br /&gt;&lt;font color="#0000ff"&gt;var&lt;/font&gt; phonebook = &lt;font color="#0000ff"&gt;new &lt;/font&gt;&lt;font color="#008080"&gt;Dictionary&lt;/font&gt;&amp;lt;&lt;font color="#008080"&gt;Customer&lt;/font&gt;, &lt;font color="#008080"&gt;List&lt;/font&gt;&amp;lt;&lt;font color="#008080"&gt;PhoneNumber&lt;/font&gt;&amp;gt;&amp;gt;(); &lt;font color="#008000"&gt;//OK&lt;/font&gt; – object construction, with generics&lt;font color="#008000"&gt;         &lt;br /&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;var &lt;/font&gt;point = &lt;font color="#0000ff"&gt;new &lt;font color="#008080"&gt;Point&lt;/font&gt; &lt;/font&gt;{ X = 10, Y = 5 }; &lt;font color="#008000"&gt;//OK&lt;/font&gt; – object construction&lt;font color="#0000ff"&gt;         &lt;br /&gt;var&lt;/font&gt; customer = (&lt;font color="#008080"&gt;Customer&lt;/font&gt;)someObject; &lt;font color="#008000"&gt;//OK&lt;/font&gt; – cast&lt;font color="#008000"&gt;         &lt;br /&gt;&lt;/font&gt;&lt;font color="#ff0000"&gt;&lt;font color="#0000ff"&gt;var&lt;/font&gt;&amp;#160;&lt;/font&gt;products = objects.Cast &amp;lt;&lt;font color="#008080"&gt;Product&lt;/font&gt;&amp;gt;(); &lt;font color="#ff8000"&gt;//Debatable &lt;/font&gt;– clearly &lt;em&gt;something&lt;/em&gt; with Product objects, but a List&amp;lt;T&amp;gt;, a T[], an IEnumerable&amp;lt;T&amp;gt;, or …? Also, the type is mentioned quite far to the right, which doesn’t work too well with left-to-right parsing humans        &lt;br /&gt;&lt;/li&gt;   &lt;/ul&gt;    &lt;li&gt;Don’t use type inference…&lt;/li&gt;    &lt;ul&gt;     &lt;li&gt;for assigning constants to variables of built-in types, e.g. what’s the type of the variables below:       &lt;br /&gt;        &lt;br /&gt;&lt;font color="#0000ff"&gt;var &lt;/font&gt;i = 0123456789; &lt;font color="#ff0000"&gt;//NOK&lt;/font&gt; – an Int32        &lt;br /&gt;&lt;font color="#0000ff"&gt;var &lt;/font&gt;l = 9876543210; &lt;font color="#ff0000"&gt;//NOK&lt;/font&gt; – an Int64        &lt;br /&gt;&lt;font color="#0000ff"&gt;var &lt;/font&gt;name = &lt;font color="#800000"&gt;“Bart”&lt;/font&gt;; &lt;font color="#ff8000"&gt;//Debatable&lt;/font&gt; – what do you gain?        &lt;br /&gt;&lt;/li&gt;      &lt;li&gt;for “smart” type inference in foreach loops (unless you’re faced with a source of anonymous types):       &lt;br /&gt;        &lt;br /&gt;&lt;font color="#0000ff"&gt;foreach &lt;/font&gt;(&lt;font color="#0000ff"&gt;var &lt;/font&gt;x &lt;font color="#0000ff"&gt;in &lt;/font&gt;xs) &lt;font color="#ff8000"&gt;//Debatable&lt;/font&gt; – depending on meaningful variable names there might be “good” exceptions to the rule        &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; ;        &lt;br /&gt;        &lt;br /&gt;Moreover, foreach inserts casts for you if the source sequence is just an IEnumerable (i.e. not “Of T” aka “&amp;lt;T&amp;gt;”), so the best guess with type inference would be System.Object.        &lt;br /&gt;&lt;/li&gt;      &lt;li&gt;when the right-hand side doesn’t clearly indicate the type:       &lt;br /&gt;        &lt;br /&gt;&lt;font color="#0000ff"&gt;var&lt;/font&gt; something = someObject.WeirdMethod().AnotherProperty; &lt;font color="#ff0000"&gt;//NOK&lt;/font&gt; – need to know the specific API        &lt;br /&gt;&lt;/li&gt;      &lt;li&gt;if you want to forcefully exercise some abstraction, e.g. because of your development methodology allowing for “planned refactorings” down the road:       &lt;br /&gt;        &lt;br /&gt;&lt;font color="#008080"&gt;IAnimal &lt;/font&gt;animal1 = &lt;font color="#0000ff"&gt;new &lt;/font&gt;&lt;font color="#008080"&gt;Lion&lt;/font&gt;(); &lt;font color="#008000"&gt;//OK&lt;/font&gt;        &lt;br /&gt;&lt;font color="#0000ff"&gt;var &lt;/font&gt;animal2 = &lt;font color="#0000ff"&gt;new &lt;/font&gt;&lt;font color="#008080"&gt;Giraffe&lt;/font&gt;(); &lt;font color="#ff0000"&gt;//NOK&lt;/font&gt; – will be the most specific type, i.e. Giraffe        &lt;br /&gt;        &lt;br /&gt;This is an interesting one as all of the refactoring support in the IDE will be based on the most specific type and with var, you force it into the most specific type.&lt;/li&gt;   &lt;/ul&gt; &lt;/ul&gt;  &lt;p&gt;Also, it’s important to realize that mechanical changes to variable declarations (for fun?) can yield undesired behavior due to a change in semantics. A few cases pop to mind:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Lambdas don’t play well with type inference. A lambda can either be represented as code or as data (through an expression tree), so without saying what you want, the compiler can’t know. Indeed, not every rhs has a type by itself:     &lt;br /&gt;      &lt;br /&gt;&lt;font color="#008080"&gt;Func&lt;/font&gt;&amp;lt;&lt;font color="#0000ff"&gt;int&lt;/font&gt;&amp;gt; f = () =&amp;gt; 123;      &lt;br /&gt;&lt;font color="#008080"&gt;Expression&lt;/font&gt;&amp;lt;&lt;font color="#008080"&gt;Func&lt;/font&gt;&amp;lt;&lt;font color="#0000ff"&gt;int&lt;/font&gt;&amp;gt;&amp;gt; e = () =&amp;gt; 123;      &lt;br /&gt;&lt;/li&gt;    &lt;li&gt;Implicit conversion – the long that became an int:     &lt;br /&gt;      &lt;br /&gt;&lt;font color="#0000ff"&gt;checked&lt;/font&gt;      &lt;br /&gt;{      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &lt;font color="#0000ff"&gt;long &lt;/font&gt;i = 1; &lt;font color="#008000"&gt;// don’t change to var…&lt;/font&gt;      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &lt;font color="#0000ff"&gt;while&lt;/font&gt; (&lt;font color="#0000ff"&gt;true&lt;/font&gt;)      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;font color="#008080"&gt;Console&lt;/font&gt;.WriteLine(i *= 2); &lt;font color="#008000"&gt;// quiz: does i &amp;lt;&amp;lt;= 1 have the same effect?&lt;/font&gt;      &lt;br /&gt;}      &lt;br /&gt;&lt;/li&gt;    &lt;li&gt;Explicit interface implementations:&lt;/li&gt;    &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;static void &lt;/span&gt;Main(&lt;span style="color:blue;"&gt;string&lt;/span&gt;[] args)
{
    &lt;span style="color:#2b91af;"&gt;IBar &lt;/span&gt;b1 = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Bar&lt;/span&gt;();
    b1.Foo();

    &lt;span style="color:blue;"&gt;var &lt;/span&gt;b2 = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Bar&lt;/span&gt;();
    b2.Foo();
}&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;

  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;interface &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;IBar
&lt;/span&gt;{
    &lt;span style="color:blue;"&gt;void &lt;/span&gt;Foo();
}

&lt;span style="color:blue;"&gt;class &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Bar &lt;/span&gt;: &lt;span style="color:#2b91af;"&gt;IBar
&lt;/span&gt;{
    &lt;span style="color:blue;"&gt;public void &lt;/span&gt;Foo()
    {
        &lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(&lt;span style="color:#a31515;"&gt;&amp;quot;Bar.Foo&amp;quot;&lt;/span&gt;);
    }

    &lt;span style="color:blue;"&gt;void &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;IBar&lt;/span&gt;.Foo()
    {
        &lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(&lt;span style="color:#a31515;"&gt;&amp;quot;IBar.Foo&amp;quot;&lt;/span&gt;);
    }
}&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;

  &lt;li&gt;Method hiding:&lt;/li&gt;

  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;static void &lt;/span&gt;Main(&lt;span style="color:blue;"&gt;string&lt;/span&gt;[] args)
{
    &lt;span style="color:#2b91af;"&gt;Foo &lt;/span&gt;f1 = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;ExtendedFoo&lt;/span&gt;();
    f1.Bar();

    &lt;span style="color:blue;"&gt;var &lt;/span&gt;f2 = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;ExtendedFoo&lt;/span&gt;();
    f2.Bar();
}&lt;/pre&gt;

  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;class &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Foo
&lt;/span&gt;{
    &lt;span style="color:blue;"&gt;public virtual void &lt;/span&gt;Bar()
    {
        &lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(&lt;span style="color:#a31515;"&gt;&amp;quot;Foo.Bar&amp;quot;&lt;/span&gt;);
    }
}

&lt;span style="color:blue;"&gt;class &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;ExtendedFoo &lt;/span&gt;: &lt;span style="color:#2b91af;"&gt;Foo
&lt;/span&gt;{
    &lt;span style="color:blue;"&gt;public new void &lt;/span&gt;Bar()
    {
        &lt;span style="color:#2b91af;"&gt;Console&lt;/span&gt;.WriteLine(&lt;span style="color:#a31515;"&gt;&amp;quot;ExtendedFoo.Bar&amp;quot;&lt;/span&gt;);
    }
}&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/ul&gt;

&lt;p&gt;In the end, as usual, there’s no silver bullet. However, &lt;strong&gt;one should optimize code for reading it&lt;/strong&gt; (write-once, read-many philosophy). When trying to understand programs (at least imperative ones &amp;lt;g&amp;gt;) we already have to do quite some mental “step though” to absorb the implementation specifics with loops, conditions, class hierarchies, etc. We shouldn’t extend this process of mental debugging or reverse engineering with type inference overhead in cases where it’s not immediately apparent what the intended type is. Even though the IDE will tell you the type of an implicitly-typed local when hovering over it, it’s not the kind of thing we want to rely on to decipher every single piece of code. Similarly, IntelliSense is working great for implicitly typed local variables, but that only affects the write-once side of the story.&lt;/p&gt;

&lt;p&gt;After all, every powerful tool imposes a danger when misused. Type inference is no different in this respect.&lt;/p&gt;&lt;img src="http://bartdesmet.net/aggbug.aspx?PostID=13900" width="1" height="1"&gt;</description><category domain="http://bartdesmet.net/blogs/bart/archive/tags/C_2300_+3.0/default.aspx">C# 3.0</category><category domain="http://bartdesmet.net/blogs/bart/archive/tags/VB+9.0/default.aspx">VB 9.0</category></item><item><title>Curry for dummies (Cont’d) – A happy ending</title><link>http://bartdesmet.net/blogs/bart/archive/2008/08/22/curry-for-dummies-cont-d-a-happy-ending.aspx</link><pubDate>Fri, 22 Aug 2008 15:28:00 GMT</pubDate><guid isPermaLink="false">863c5522-913f-4a64-ac0a-bd5f05abad0f:13890</guid><dc:creator>bart</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bartdesmet.net/blogs/bart/rsscomments.aspx?PostID=13890</wfw:commentRss><comments>http://bartdesmet.net/blogs/bart/archive/2008/08/22/curry-for-dummies-cont-d-a-happy-ending.aspx#comments</comments><description>&lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;I didn’t intend to make this a series of posts but that’s the way things go. Based on feedback from readers and additional questions raised, one decides that add that little bit more to it and ultimate you’re writing a sequel. Where have we been on this journey? First, we took a look at the abstract concept of currying in &lt;a href="http://community.bartdesmet.net/blogs/bart/archive/2008/08/13/curry-for-dummies.aspx"&gt;Curry for dummies&lt;/a&gt;. Next, evaluation strategies were outlined in &lt;a href="http://community.bartdesmet.net/blogs/bart/archive/2008/08/18/curry-for-dummies-cont-d-a-note-on-purity.aspx"&gt;Curry for dummies cont&amp;#39;d - A note on purity&lt;/a&gt;, outlining that formal substitution relies on assumptions about the expression involved, i.e. they better are side-effect free to be able to employ call-by-name semantics as opposed to – the much embraced in the imperative world – call-by-value semantics. To challenge the readers, I wrote this:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;em&gt;Readers looking for a challenge are invited to think about how it would be possible to adapt the original (substitution-driven) &lt;/em&gt;&lt;a href="http://community.bartdesmet.net/blogs/bart/archive/2008/08/13/curry-for-dummies.aspx"&gt;&lt;em&gt;Curry for dummies&lt;/em&gt;&lt;/a&gt;&lt;em&gt; code to work with call-by-need semantics; in other words, how can a lambda expression be applied (the number of arguments provided is not really relevant in this discussion) with arguments that are lazily (one time at most) evaluated? I&amp;#39;ll post the answer some time soon.&lt;/em&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;What I’m suggesting here is to implement call-by-need semantics for applying (in formal terms, using beta-reduction) arguments to functions represented as lambdas. To help with the basic plumbing, I provided the Cell&amp;lt;T&amp;gt; class that looks like this:&lt;/p&gt;  &lt;blockquote&gt;   &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;class &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Cell&lt;/span&gt;&amp;lt;T&amp;gt;
{
    &lt;span style="color:blue;"&gt;private bool &lt;/span&gt;_assigned;
    &lt;span style="color:blue;"&gt;private &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Func&lt;/span&gt;&amp;lt;T&amp;gt; _func;
    &lt;span style="color:blue;"&gt;private &lt;/span&gt;T _value;

    &lt;span style="color:blue;"&gt;public &lt;/span&gt;Cell(&lt;span style="color:#2b91af;"&gt;Func&lt;/span&gt;&amp;lt;T&amp;gt; func)
    {
        _func = func;
    }

    &lt;span style="color:blue;"&gt;public &lt;/span&gt;T Value
    {
        &lt;span style="color:blue;"&gt;get
        &lt;/span&gt;{
            &lt;span style="color:blue;"&gt;if &lt;/span&gt;(!_assigned)
            {
                _value = _func();
                _assigned = &lt;span style="color:blue;"&gt;true&lt;/span&gt;;
            }

            &lt;span style="color:blue;"&gt;return &lt;/span&gt;_value;
        }
    }
}&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;In essence, this class allows us to evaluate a function upon the first call to retrieve its value. For example,&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;font face="Courier New"&gt;&lt;font color="#0000ff"&gt;var &lt;/font&gt;val = &lt;font color="#0000ff"&gt;new &lt;/font&gt;&lt;font color="#008080"&gt;Cell&lt;/font&gt;&amp;lt;&lt;font color="#0000ff"&gt;long&lt;/font&gt;&amp;gt;(() =&amp;gt; &lt;font color="#008080"&gt;DateTime&lt;/font&gt;.Now.Ticks);

      &lt;br /&gt;&lt;font color="#008080"&gt;Console&lt;/font&gt;.WriteLine(&lt;font color="#008080"&gt;DateTime&lt;/font&gt;.Now.Ticks + &lt;font color="#800000"&gt;&amp;quot; &amp;quot;&lt;/font&gt; + val.Value);

      &lt;br /&gt;&lt;font color="#008080"&gt;Thread&lt;/font&gt;.Sleep(1000);

      &lt;br /&gt;&lt;font color="#008080"&gt;Console&lt;/font&gt;.WriteLine(&lt;font color="#008080"&gt;DateTime&lt;/font&gt;.Now.Ticks + &lt;font color="#800000"&gt;&amp;quot; &amp;quot;&lt;/font&gt; + val.Value);&lt;/font&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;To convince you it really doesn’t change its mind after the initial evaluation, look at the following output:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;a href="http://bartdesmet.info/images_wlw/CurryfordummiesContdAhappyending_13EBC/image.png"&gt;&lt;img title="image" style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;" height="56" alt="image" src="http://bartdesmet.info/images_wlw/CurryfordummiesContdAhappyending_13EBC/image_thumb.png" width="310" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;The orange is the capture value and is stable. Obviously it’s later than the green one (why? ironically because of call-by-value semantics to String.Concat in the first Console.WriteLine) and earlier than the red one one second later. Anyway, this is our “smart function evaluator” which obviously relies on the fact that the function it captures doesn’t change its mind. The sample above violates this rule but it provides a way to show you it really works.&lt;/p&gt;

&lt;p&gt;Next, let’s take a look at the signature for function application:&lt;/p&gt;

&lt;blockquote&gt;&lt;/blockquote&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;static &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;LambdaExpression &lt;/span&gt;CallBy____(&lt;span style="color:#2b91af;"&gt;LambdaExpression &lt;/span&gt;func, &lt;span style="color:blue;"&gt;params &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;Expression&lt;/span&gt;[] parameters)&lt;/pre&gt;
  &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;We want to create three such functions:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;CallByValue &lt;/li&gt;

  &lt;li&gt;CallByName &lt;/li&gt;

  &lt;li&gt;CallByNeed &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;all of which will have the same signature. The way the functions work is as follows: given a lambda expression and a set of parameters, we’ll return another lambda expression that calls the original function, possibly having some remaining parameters. A sample:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;var &lt;/span&gt;a = &lt;span style="color:#2b91af;"&gt;Expression&lt;/span&gt;.Parameter(&lt;span style="color:blue;"&gt;typeof&lt;/span&gt;(&lt;span style="color:blue;"&gt;int&lt;/span&gt;), &lt;span style="color:#a31515;"&gt;&amp;quot;a&amp;quot;&lt;/span&gt;);
&lt;s