if ステートメントと else ステートメントがこの関数でどのように関連しているか教えてください。別のスレッドから GUI スレッドにテキストを表示しています。実行の順序または方法は何ですか。else文は必要ですか?
delegate void SetTextCallback(string text);
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.textBox7.InvokeRequired)
{
SetTextCallback d = new SetTextCallback(SetText);
this.Invoke(d, new object[] { text });
}
else
{
this.textBox7.Text = text;
}
}