В этой статье:
http://msdn.microsoft.com/en-us/library/ms171728(VS.80).aspx
Автор использует следующий метод для создания потокобезопасных вызовов элемента управления Windows Forms:
private void SetText(string text)
{
// InvokeRequired required compares the thread ID of the
// calling thread to the thread ID of the creating thread.
// If these threads are different, it returns true.
if (this.textBox1.InvokeRequired)
{
SetTextCallback d = new SetTextCallback(SetText);
this.Invoke(d, new object[] { text });
}
else
{
this.textBox1.Text = text;
}
}
Есть ли более короткий способ выполнить одно и то же?