MethodInvoker vs Action for Control.BeginInvoke
问题 Which is more correct and why? Control.BeginInvoke(new Action(DoSomething), null); private void DoSomething() { MessageBox.Show(\"What a great post\"); } or Control.BeginInvoke((MethodInvoker) delegate { MessageBox.Show(\"What a great post\"); }); I kinda feel like I am doing the same thing, so when is the right time to use MethodInvoker vs Action , or even writing a lambda expression? EDIT: I know that there isn\'t really much of a difference between writing a lambda vs Action , but