在此链接的代码中:http://c-sharp-programming.blogspot.com/2008/07/cross-thread-operation-not-valid.html,委托用于从工作人员更新文本框的值线。
我基本上可以看到发生了什么,但是这一行的语法特别:
label1.Invoke(del, new object[] { newText });
让我很困惑。有人可以解释一下吗?当只有一个参数时,为什么我们要为委托使用新的对象数组语法?
完整代码:
delegate void updateLabelTextDelegate(string newText);
private void updateLabelText(string newText)
{
if (label1.InvokeRequired)
{
// this is worker thread
updateLabelTextDelegate del = new updateLabelTextDelegate(updateLabelText);
label1.Invoke(del, new object[] { newText });
}
else
{
// this is UI thread
label1.Text = newText;
}
}