C# MethodInvoker和Action

哪个更正确,为什么?

Control.BeginInvoke(new Action(DoSomething), null);

private void DoSomething()
{
    MessageBox.Show(
"What a great post");
}

要么

Control.BeginInvoke((MethodInvoker) delegate {
    MessageBox.Show(
"What a great post");
});

两者都是正确的,但 Control.Invoke的文档声明:

The delegate can be an instance of

EventHandler, in which case the sender

parameter will contain this control,

and the event parameter will contain

EventArgs.Empty. The delegate can also

be an instance of MethodInvoker, or

any other delegate that takes a void

parameter list. A call to an

EventHandler or MethodInvoker delegate

will be faster than a call to another

type of delegate.

所以MethodInvoker将是一个更有效的选择。

查看MethodInvoker的命名空间可以得知其位Windows.Forms 由此可见更新winforms界面使用MethodInvoker更合适

namespace System.Windows.Forms
{
    //
    // 摘要:
    //     表示一个委托,该委托可执行托管代码中声明为 void 且不接受任何参数的任何方法。
    public delegate void MethodInvoker();
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值