Which is more correct and why?
Control.BeginInvoke(new Action(DoSomething), null); private void DoSomething() { MessageBox.Show(\"What a great post\");
I prefer using lambdas and Actions/Funcs:
Control.BeginInvoke(new Action(() => MessageBox.Show("What a great post")));