Why must a lambda expression be cast when supplied as a plain Delegate parameter - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T21:46:47Z http://stackoverflow.com/feeds/question/411579 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/411579/why-must-a-lambda-expression-be-cast-when-supplied-as-a-plain-delegate-parameter 3 Why must a lambda expression be cast when supplied as a plain Delegate parameter frou 2009-01-04T20:00:47Z 2009-04-03T14:04:11Z <p>Take the method System.Windows.Forms.Control.Invoke(Delegate method)</p> <p>Why does this give a complile time error:</p> <pre><code>string str = "woop"; Invoke(() =&gt; this.Text = str); // Error: Cannot convert lambda expression to type 'System.Delegate' // because it is not a delegate type </code></pre> <p>Yet this works fine:</p> <pre><code>string str = "woop"; Invoke((Action)(() =&gt; this.Text = str)); </code></pre> <p>When the method expects a plain Delegate?</p> http://stackoverflow.com/questions/411579/why-must-a-lambda-expression-be-cast-when-supplied-as-a-plain-delegate-parameter/411597#411597 9 Answer by Jon Skeet for Why must a lambda expression be cast when supplied as a plain Delegate parameter Jon Skeet 2009-01-04T20:07:02Z 2009-01-04T20:07:02Z <p>A lambda expression can either be converted to a delegate type or an expression tree - but it has to know <em>which</em> delegate type. Just knowing the signature isn't enough. For instance, suppose I have:</p> <pre><code>public delegate void Action1(); public delegate void Action2(); ... Delegate x = () =&gt; Console.WriteLine("hi"); </code></pre> <p>What would you expect the concrete type of the object referred to by <code>x</code> to be? Yes, the compiler <em>could</em> generate a new delegate type with an appropriate signature, but that's rarely useful and you end up with less opportunity for error checking.</p> <p>If you want to make it easy to call <code>Control.Invoke</code> with an <code>Action</code> the easiest thing to do is add an extension method to Control:</p> <pre><code>public static void Invoke(this Control control, Action action) { control.Invoke((Delegate) action); } </code></pre> http://stackoverflow.com/questions/411579/why-must-a-lambda-expression-be-cast-when-supplied-as-a-plain-delegate-parameter/714044#714044 1 Answer by Andrey Naumov for Why must a lambda expression be cast when supplied as a plain Delegate parameter Andrey Naumov 2009-04-03T14:04:11Z 2009-04-03T14:04:11Z <p>Tired of casting lambdas over and over?</p> <pre><code>public sealed class Lambda&lt;T&gt; { public static Func&lt;T, T&gt; Cast = x =&gt; x; } public class Example { public void Run() { // Declare var c = Lambda&lt;Func&lt;int, string&gt;&gt;.Cast; // Use var f1 = c(x =&gt; x.ToString()); var f2 = c(x =&gt; "Hello!"); var f3 = c(x =&gt; (x + x).ToString()); } } </code></pre>