Which is more correct and why?
Control.BeginInvoke(new Action(DoSomething), null); private void DoSomething() { MessageBox.Show(\"What a great post\");
Don't forget to somehow check if control is available at the moment, to avoid errors at closing form.
if(control.IsHandleCreated) control.BeginInvoke((MethodInvoker)(() => control.Text="check123"));