public void AnyMethod(int parameter) { var wrapper = new Action(()=> { // Do your thing here! }); if (this.InvokeRequired) this.Invoke(wrapper); else wrapper(); }
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)