c# 线程中的匿名委托

             //线程 界面传值
                this.Invoke(new Action(() =>
                {
                    lbl_progress.Text = i++.ToString();
                }));
 
this.BeginInvoke(new MethodInvoker(0 =>
 }));

你可能感兴趣的:(C#,匿名委托,线程)