show/hide this revision's text 2 deleted 3 characters in body

Why must a lambda expression be cast when supplied as an untyped a plain Delegate parameter

Take the method System.Windows.Forms.Control.Invoke(Delegate method)

Why does this give a complile time error:

string str = "woop";
Invoke(() => this.Text = str);
// Error: Cannot convert lambda expression to type 'System.Delegate'
// because it is not a delegate type

Yet this works fine:

string str = "woop";
Invoke((Action)(() => this.Text = str));

When the method expects an untyped delegatea plain Delegate?

show/hide this revision's text 1

Why must a lambda expression be cast when supplied as an untyped Delegate parameter

Take the method System.Windows.Forms.Control.Invoke(Delegate method)

Why does this give a complile time error:

string str = "woop";
Invoke(() => this.Text = str);
// Error: Cannot convert lambda expression to type 'System.Delegate'
// because it is not a delegate type

Yet this works fine:

string str = "woop";
Invoke((Action)(() => this.Text = str));

When the method expects an untyped delegate?