Multi Threading C# Windows Forms
问题 So I am trying to implement multi-threading in my windows forms project. I know of one way to do this, by creating a new thread for the methods you want to run separately like this: Thread t = new Thread(new ThreadStart(methodName)); t.Start(); And then invoking each object that is "Accessed from a thread other than the thread it was created on." like this: this.Invoke(new MethodInvoker(delegate() { this.Object = "whatever"; })); The only problem with this is, my program is several thousand