MyMethodDelegate
有什么方法可以避免在这种情况下明确声明?
bool MyMethod(string x)
{
//...
}
BeginInvoke(new MyMethodDelegate(MyMethod), x);
我知道 lambdas a-la ()=>MyMethod(x)
,但是有时我想避免它们,因为它们会破坏编辑并继续。
编辑:只是BeginInvoke(MyMethod, x)
不起作用:
The best overloaded method match for 'System.Windows.Forms.Control.BeginInvoke(System.Delegate, params object[])' has some invalid arguments
Argument 1: cannot convert from 'method group' to 'System.Delegate'
Argument 2: cannot convert from 'string' to 'object[]'
BeginInvoke 定义如下:
public IAsyncResult BeginInvoke(Delegate method, params object[] args);
它没有指定任何特定的委托类型,因此编译器无法检测从哪个委托类型实例化BeginInvoke(MyMethod. x)