C# MethodInvoker和Action

C# MethodInvoker和Action哪个更正确,为什么?Control.BeginInvoke(newAction(DoSomething),null);privatevoidDoSomething(){MessageBox.Show(“Whatagreatpost”);}要么Control.BeginInvoke((MethodInvoker)delegate{MessageBox.Show(“Whatagreatpost”);});两者都是正……

哪个更正确,为什么?

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();
}

今天的文章C# MethodInvoker和Action分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/12577.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注