标签: c# winforms delegates begininvoke
可能重复: MethodInvoker vs Action for Control.BeginInvoke
这两个定义之间的区别在哪里,是否有更短的方法来做同样的行为?
control.BeginInvoke((MethodInvoker)delegate { }); control.BeginInvoke((Action)delegate { });