Why must a lambda expression be cast when supplied as a plain Delegate parameter - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T21:46:47Zhttp://stackoverflow.com/feeds/question/411579http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/411579/why-must-a-lambda-expression-be-cast-when-supplied-as-a-plain-delegate-parameter3Why must a lambda expression be cast when supplied as a plain Delegate parameterfrou2009-01-04T20:00:47Z2009-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(() => 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)(() => 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#4115979Answer by Jon Skeet for Why must a lambda expression be cast when supplied as a plain Delegate parameterJon Skeet2009-01-04T20:07:02Z2009-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 = () => 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#7140441Answer by Andrey Naumov for Why must a lambda expression be cast when supplied as a plain Delegate parameterAndrey Naumov2009-04-03T14:04:11Z2009-04-03T14:04:11Z<p>Tired of casting lambdas over and over?</p>
<pre><code>public sealed class Lambda<T>
{
public static Func<T, T> Cast = x => x;
}
public class Example
{
public void Run()
{
// Declare
var c = Lambda<Func<int, string>>.Cast;
// Use
var f1 = c(x => x.ToString());
var f2 = c(x => "Hello!");
var f3 = c(x => (x + x).ToString());
}
}
</code></pre>