C# Invoke与BeginInvoke

实时响应用Invoke

  this.Invoke(new Action(() =>
            { 
              
            }));

无需实时响应用BeginInvoke

  this.BeginInvoke(new Action(() =>
            { 
              
            }));

猜你喜欢

转载自blog.csdn.net/qq_38341160/article/details/120428644